Last active
September 6, 2017 11:03
-
-
Save maxleistner/46b798775eb6da2472e18dc4815808ec to your computer and use it in GitHub Desktop.
Safari Flexbox equal_height fix
This file contains 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
.same_height { | |
@media all and (min-width: $media-s) { | |
div[class^='col-'] { | |
.col { // Layotter Col | |
flex: 1; | |
display: flex; | |
flex-direction: column; | |
.inner { // Modul Wrapper | |
flex: 1; | |
display: flex; | |
flex-direction: column; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment