mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 09:04:55 +00:00
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;
|
|
}
|
|
}
|
|
}
|