Created
March 1, 2016 03:58
-
-
Save TheJosh/3bd7d010ecd7a551e796 to your computer and use it in GitHub Desktop.
Very annoying tabs in atom editor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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