You've already forked AstralRinth
forked from didirus/AstralRinth
* Initial Search Item * Pagination thing * Local changes * Push component * Interface with API * Temporary loader indication * Fix sidebar spacing * Filters sidebar * Add filters sidebar * Make package files the same
25 lines
277 B
SCSS
25 lines
277 B
SCSS
.columns {
|
|
display: flex;
|
|
|
|
@for $i from 1 through 4 {
|
|
.column-grow-#{$i} {
|
|
flex-grow: $i;
|
|
}
|
|
}
|
|
}
|
|
|
|
.rows {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
@for $i from 1 through 4 {
|
|
.row-grow-#{$i} {
|
|
flex-grow: $i;
|
|
}
|
|
}
|
|
}
|
|
|
|
.w-100 {
|
|
width: 100%;
|
|
}
|