]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix dart-sass deprecation warning (#39030)
authorSebastian Blank <blank@data-factory.net>
Tue, 12 Sep 2023 20:04:02 +0000 (22:04 +0200)
committerGitHub <noreply@github.com>
Tue, 12 Sep 2023 20:04:02 +0000 (13:04 -0700)
* Fix dart-sass deprecation warning

* Fix wrong percentages

---------

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
scss/mixins/_grid.scss

index 38e2239fdb58be4d14ee70fa7cfb311eae2b37fb..99b1e7dea69d5d9db0c7effe572470f0a5374a03 100644 (file)
@@ -56,7 +56,7 @@
 @mixin row-cols($count) {
   > * {
     flex: 0 0 auto;
-    width: divide(100%, $count);
+    width: percentage(divide(1, $count));
   }
 }