Created
August 17, 2016 21:27
-
-
Save rageandqq/4440ba27cd0356c1071b7d52a9276867 to your computer and use it in GitHub Desktop.
atom multiline tab styling
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
// Make tabs multi-row | |
.tab-bar { | |
height: auto; | |
flex-wrap: wrap; | |
.tab, | |
.tab.active { | |
flex: 1 0 auto; | |
height: 30px; | |
line-height: 27px; | |
} | |
.tab .title, | |
.tab.active .title { | |
padding-right: 5px; | |
position: relative; | |
top: 1px; | |
} | |
.tab .close-icon, | |
.tab.active .close-icon { | |
line-height: 29px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment