Skip to content

Commit

Permalink
fix dart-sass abs deprecation warning
Browse files Browse the repository at this point in the history
Forked from v4 tag. Based on twbs#39030
  • Loading branch information
webdevian committed Sep 13, 2023
1 parent e5643aa commit e265e0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scss/mixins/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
// style grid.
@mixin row-cols($count) {
> * {
flex: 0 0 divide(100%, $count);
max-width: divide(100%, $count);
flex: 0 0 percentage(divide(1, $count));
max-width: percentage(divide(1, $count));
}
}

0 comments on commit e265e0a

Please sign in to comment.