Skip to content

Commit

Permalink
Fix dart-sass deprecation warning (twbs#39030)
Browse files Browse the repository at this point in the history
* Fix dart-sass deprecation warning

* Fix wrong percentages

---------

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
  • Loading branch information
2 people authored and linusback committed Oct 16, 2023
1 parent e5643aa commit 830da54
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 830da54

Please sign in to comment.