Created
January 22, 2020 20:52
-
-
Save sashabeep/3f8a8892f0840acc281384c3bccc295c to your computer and use it in GitHub Desktop.
bootstrap 3 flex
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
@media only screen and (min-width: 481px) { | |
.grid-group-wrapper.row { | |
display: flex; | |
flex-wrap: wrap; | |
} | |
.grid-group-wrapper.row:after, | |
.grid-group-wrapper.row:before { | |
display: flex; | |
} | |
.grid-group-wrapper.row > [class*='col-'] { | |
display: flex; | |
flex-direction: column; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment