1
0
Files
AstralRinth/assets/styles/layout.scss
Geometrically 80ded84f7a Search (#7)
* 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
2020-09-02 07:55:48 -07:00

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%;
}