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 e50762d commit 4179ab9
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: $breakpoint-large) {
display: flex;
}

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

0 comments on commit 4179ab9

Please sign in to comment.