Last active
November 1, 2017 14:57
-
-
Save dalailomo/b74a7cd0adef6d54b36607b6ac36c9ee to your computer and use it in GitHub Desktop.
Put atom tabs on right side
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
// Tabs on the right side | |
.vertical .pane { | |
flex-direction: row-reverse; | |
font-family: Monaco, monospace; | |
.tab-bar { | |
height: auto; | |
flex-direction: column; | |
min-width: 130pt; | |
.tab { | |
transition: 0.3s; | |
.title { | |
text-align: left; | |
} | |
&.is-dragging { | |
background: #444; | |
.title { | |
background: none; | |
} | |
} | |
&.is-drop-target { | |
box-shadow: 0 -2px 0px #4A90E2; | |
} | |
width: 100%; | |
max-height: 28pt; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment