Skip to content

Commit

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

* Fix wrong percentages

---------

Co-authored-by: XhmikosR <[email protected]>
  • Loading branch information
blankse and XhmikosR authored Sep 12, 2023
1 parent 413894d commit d07d3a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/mixins/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
@mixin row-cols($count) {
> * {
flex: 0 0 auto;
width: divide(100%, $count);
width: percentage(divide(1, $count));
}
}

Expand Down

0 comments on commit d07d3a6

Please sign in to comment.