aboutsummaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2021-06-17 09:15:59 -0700
committerGitHub <[email protected]>2021-06-17 19:15:59 +0300
commitbef9ec88986dbb4a8d34e9f01ffc0183c8b7ded0 (patch)
tree9cc025b9c6bff5c922d4eced037f309dedb08b4f /scss
parent543d2219c455419ea25173156770780b1b1db019 (diff)
downloadbootstrap-bef9ec88986dbb4a8d34e9f01ffc0183c8b7ded0.tar.xz
bootstrap-bef9ec88986dbb4a8d34e9f01ffc0183c8b7ded0.zip
Fix lingering Sass math (#34281)
Diffstat (limited to 'scss')
-rw-r--r--scss/mixins/_grid.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/mixins/_grid.scss b/scss/mixins/_grid.scss
index 152d91413..cf5ab7fa2 100644
--- a/scss/mixins/_grid.scss
+++ b/scss/mixins/_grid.scss
@@ -1,4 +1,4 @@
-/// Grid system
+// Grid system
//
// Generate semantic grid columns with these mixins.
@@ -55,7 +55,7 @@
@mixin row-cols($count) {
> * {
flex: 0 0 auto;
- width: 100% / $count;
+ width: divide(100%, $count);
}
}