mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-05-16 08:03:09 +00:00
Fix lingering Sass math (#34281)
This commit is contained in:
parent
543d2219c4
commit
bef9ec8898
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
/// Grid system
|
// Grid system
|
||||||
//
|
//
|
||||||
// Generate semantic grid columns with these mixins.
|
// Generate semantic grid columns with these mixins.
|
||||||
|
|
||||||
|
|
@ -55,7 +55,7 @@
|
||||||
@mixin row-cols($count) {
|
@mixin row-cols($count) {
|
||||||
> * {
|
> * {
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
width: 100% / $count;
|
width: divide(100%, $count);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue