Skip to content

Instantly share code, notes, and snippets.

@billerickson
Last active July 2, 2018 13:29
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 billerickson/9b81e61d5c79ce33a24454220a1b9c72 to your computer and use it in GitHub Desktop.
Save billerickson/9b81e61d5c79ce33a24454220a1b9c72 to your computer and use it in GitHub Desktop.
.sidebar-content .site-main,
.content-sidebar .site-main {
float: left;
width: 65.75%;
}
.sidebar-content .sidebar-primary,
.content-sidebar .sidebar-primary {
float: left;
width: 28.68%;
}
.sidebar-content .site-main,
.content-sidebar .sidebar-primary {
float: right;
}
@supports( grid-area: auto ) {
.sidebar-content .site-main,
.content-sidebar .site-main,
.sidebar-content .sidebar-primary,
.content-sidebar .sidebar-primary {
float: none;
width: 100%;
}
.content-sidebar .content-area {
display: grid;
grid-template-columns: 1fr 335px;
grid-column-gap: 32px;
}
.sidebar-content .content-area {
grid-template-columns: 335px 1fr;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment