Skip to content

Commit

Permalink
Remove unnecessary wrapping in IE fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
bartaz committed Mar 24, 2020
1 parent 9ed5b05 commit 908ddce
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions scss/_base_grid-definitions.scss
Expand Up @@ -17,9 +17,11 @@
%vf-row {
@extend %fixed-width-container;

// default to flexbox for IE
display: flex;
flex-wrap: wrap;
// default to flexbox for IE on large screens
// on small screens we let columns render one under another
@media (min-width: $threshold-6-12-col) {
display: flex;
}

& & {
@include vf-b-row-reset;
Expand Down

0 comments on commit 908ddce

Please sign in to comment.