1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-17 19:06:40 +02:00

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

View File

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