1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

Fix lingering Sass math (#34281)

This commit is contained in:
Mark Otto 2021-06-17 09:15:59 -07:00 committed by GitHub
parent 543d2219c4
commit bef9ec8898
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}
}