Skip to content

Instantly share code, notes, and snippets.

@TheJosh
Created March 1, 2016 03:58
Show Gist options
  • Save TheJosh/3bd7d010ecd7a551e796 to your computer and use it in GitHub Desktop.
Save TheJosh/3bd7d010ecd7a551e796 to your computer and use it in GitHub Desktop.
Very annoying tabs in atom editor
@keyframes tabannoy {
0% { color: #fff; font-size: 2px; }
100% { color: #000; font-size: 50px; }
}
.tab-bar .tab .title {
animation-name: tabannoy;
animation-duration: 250ms;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-fill-mode: forwards;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment