Skip to content

Instantly share code, notes, and snippets.

@jasesmith
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasesmith/29b4c0da50ddf4d30337 to your computer and use it in GitHub Desktop.
Save jasesmith/29b4c0da50ddf4d30337 to your computer and use it in GitHub Desktop.
Full-width Tabs in Atom

Allow Atom's file tabs to be as big as they need to be to show the full filename text; aka: no tab ellipses (...)

.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