Created
December 15, 2020 00:06
-
-
Save Lelectrolux/922189e81a7fd5f47bb361391613720e to your computer and use it in GitHub Desktop.
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
.wrapper { | |
--gap: 32px; | |
display: grid; | |
grid-column-gap: var(--gap); | |
grid-template-columns: 1fr min(65ch, calc(100% - 2 * var(--gap))) 1fr; | |
} | |
.wrapper > * { | |
grid-column: 2; | |
} | |
.full-bleed { | |
width: 100%; | |
grid-column: 1 / -1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment