Fix dart-sass deprecation warning (#39030)

* Fix dart-sass deprecation warning

* Fix wrong percentages

---------

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
Sebastian Blank 2023-09-12 22:04:02 +02:00 committed by GitHub
parent 413894d469
commit d07d3a60c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,7 @@
@mixin row-cols($count) {
> * {
flex: 0 0 auto;
width: divide(100%, $count);
width: percentage(divide(1, $count));
}
}