Created
October 22, 2018 14:23
-
-
Save cagartner/fb75526b96115f0ba9ce14d47e4907f9 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
/***************/ | |
.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