Forked from ihorduchenko/Amount of flex-items per row
Last active
October 1, 2018 18:31
-
-
Save rogerramosme/9911014284e41795b321b65774eb0d85 to your computer and use it in GitHub Desktop.
Sass: How adjust amount of flex-items per row
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
<div class="container"> | |
<div class="item"></div> | |
<div class="item"></div> | |
<div class="item"></div> | |
<div class="item"></div> | |
<div class="item"></div> | |
<div class="item"></div> | |
<div class="item"></div> | |
<div class="item"></div> | |
</div> |
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
@mixin max-width($width) { | |
@media screen and (max-width: $width) { | |
@content; | |
} | |
} | |
.container { | |
position: relative; | |
display: flex; | |
flex-flow: row wrap; | |
} | |
.item { | |
background-color: tomato; | |
box-sizing: border-box; | |
padding: 20px; | |
outline: 2px solid blue; | |
flex: 1; | |
} | |
@include max-width(992px) { | |
.item { | |
flex-basis: 25%; | |
background-color: red; | |
} | |
} | |
@include max-width(640px) { | |
.item { | |
flex-basis: 50%; | |
background-color: green; | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment