diff options
| author | Mark Otto <[email protected]> | 2021-06-17 09:15:59 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-06-17 19:15:59 +0300 |
| commit | bef9ec88986dbb4a8d34e9f01ffc0183c8b7ded0 (patch) | |
| tree | 9cc025b9c6bff5c922d4eced037f309dedb08b4f | |
| parent | 543d2219c455419ea25173156770780b1b1db019 (diff) | |
| download | bootstrap-bef9ec88986dbb4a8d34e9f01ffc0183c8b7ded0.tar.xz bootstrap-bef9ec88986dbb4a8d34e9f01ffc0183c8b7ded0.zip | |
Fix lingering Sass math (#34281)
| -rw-r--r-- | scss/mixins/_grid.scss | 4 |
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); } } |
