Skip to content

Commit bef9ec8

Browse files
authored
Fix lingering Sass math (#34281)
1 parent 543d221 commit bef9ec8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scss/mixins/_grid.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// Grid system
1+
// Grid system
22
//
33
// Generate semantic grid columns with these mixins.
44

@@ -55,7 +55,7 @@
5555
@mixin row-cols($count) {
5656
> * {
5757
flex: 0 0 auto;
58-
width: 100% / $count;
58+
width: divide(100%, $count);
5959
}
6060
}
6161

0 commit comments

Comments
 (0)