Skip to content

Instantly share code, notes, and snippets.

@abenoit
Created March 30, 2019 22:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abenoit/ee74cb4f37f365d1de9d56b50a9557c6 to your computer and use it in GitHub Desktop.
Save abenoit/ee74cb4f37f365d1de9d56b50a9557c6 to your computer and use it in GitHub Desktop.
@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