Created
December 17, 2019 22:47
-
-
Save jenweber/797620eb518630f7311b4478ebcddff5 to your computer and use it in GitHub Desktop.
CSS Grid split toolbar
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
/* some buttons align left, others right, adjusts dynamically! */ | |
.themer--top-edge-container { | |
display: grid; | |
position: fixed; | |
top: var(--ch-spacing); | |
right: var(--ch-spacing); | |
left: var(--ch-spacing); | |
z-index: var(--ch-actions-z-index); | |
grid-template-columns: auto auto; | |
} | |
.themer--top-edge-width-controls { | |
justify-self: start; | |
} | |
.themer--top-edge-pane-controls { | |
justify-self: end; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment