Skip to content

Instantly share code, notes, and snippets.

@cagartner
Created October 22, 2018 14:23
Show Gist options
  • Save cagartner/fb75526b96115f0ba9ce14d47e4907f9 to your computer and use it in GitHub Desktop.
Save cagartner/fb75526b96115f0ba9ce14d47e4907f9 to your computer and use it in GitHub Desktop.
/***************/
.wp-block-columns {
display: flex;
margin: 20px 0;
}
.wp-block-column {
flex: 1;
margin: 0 20px;
}
@media (max-width: 764px) {
.wp-block-columns.has-3-columns {
flex-flow: row wrap;
}
.has-3-columns .wp-block-column:first-child {
flex-basis: 100%;
}
}
@media (max-width: 478px) {
.wp-block-columns.has-3-columns {
display: block;
}
.wp-block-column {
margin: 20px 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment