Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorMark Otto <markd.otto@gmail.com>2021-06-17 19:15:59 +0300
committerGitHub <noreply@github.com>2021-06-17 19:15:59 +0300
commitbef9ec88986dbb4a8d34e9f01ffc0183c8b7ded0 (patch)
tree9cc025b9c6bff5c922d4eced037f309dedb08b4f /scss
parent543d2219c455419ea25173156770780b1b1db019 (diff)
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 152d91413e..cf5ab7fa2b 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);
}
}