Allow Atom's file tabs to be as big as they need to be to show the full filename text; aka: no tab ellipses (...)
Last active
August 29, 2015 14:10
-
-
Save jasesmith/29b4c0da50ddf4d30337 to your computer and use it in GitHub Desktop.
Full-width Tabs in Atom
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
.tab-bar .tab { | |
max-width: none; | |
-webkit-flex: 0 0 auto; | |
&.active { | |
-webkit-flex: 0 0 auto; | |
.title { | |
padding-right: 20px; | |
} | |
} | |
.title { | |
padding-right: 20px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment