You've already forked AstralRinth
forked from didirus/AstralRinth
10 lines
116 B
SCSS
10 lines
116 B
SCSS
.columns {
|
|
display: flex;
|
|
|
|
@for $i from 1 through 4 {
|
|
.column-grow-#{$i} {
|
|
flex-grow: $i;
|
|
}
|
|
}
|
|
}
|