1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

flow grid now has 5 columns

This commit is contained in:
Fedor Katurov 2019-10-23 14:51:34 +07:00
parent 744f79053b
commit ed3f6369fb
5 changed files with 34 additions and 11 deletions

View file

@ -14,9 +14,15 @@ $cols: $content_width / $cell;
grid-column-gap: $grid_line;
grid-row-gap: $grid_line;
@media (max-width: $cell * 6) {
grid-template-columns: repeat(5, 1fr);
grid-template-rows: 40vh 20vw;
grid-auto-rows: 20vw;
}
@media (max-width: $cell * 5) {
grid-template-columns: repeat(4, 1fr);
grid-template-rows: 25vw $cell;
grid-template-rows: 40vh 25vw;
grid-auto-rows: 25vw;
}