Created
March 30, 2019 22:49
-
-
Save abenoit/ee74cb4f37f365d1de9d56b50a9557c6 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
@media (max-width: 800px) { | |
.footer { | |
grid-area: footer; | |
} | |
.head { | |
grid-area: head; | |
} | |
.container { | |
grid-template-rows: 15px 1fr 75px 130px; | |
grid-template-columns: 150px 1fr; | |
grid-template-areas: | |
"head head" | |
"rsidebar content" | |
"content lsidebar" | |
"footer footer"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment