Skip to content

Commit

Permalink
Fix CSS tests
Browse files Browse the repository at this point in the history
  • Loading branch information
louismaximepiton committed Oct 23, 2024
1 parent 7b83e0b commit 899a201
Show file tree
Hide file tree
Showing 2 changed files with 518 additions and 524 deletions.
4 changes: 2 additions & 2 deletions scss/mixins/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,12 @@
@each $key, $value in $gutters {
.g#{$infix}-#{$key},
.gx#{$infix}-#{$key} {
--#{$prefix}gutter-x: #{$value} if($enable-important-utilities, !important, null);
--#{$prefix}gutter-x: #{$value if($enable-important-utilities, !important, null)};
}

.g#{$infix}-#{$key},
.gy#{$infix}-#{$key} {
--#{$prefix}gutter-y: #{$value} if($enable-important-utilities, !important, null);
--#{$prefix}gutter-y: #{$value if($enable-important-utilities, !important, null)};
}
}
}
Expand Down
Loading

0 comments on commit 899a201

Please sign in to comment.