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

fixed cells

This commit is contained in:
Fedor Katurov 2019-10-31 14:11:17 +07:00
parent 5edcfaf4e2
commit a3bb364c57

View file

@ -8,9 +8,14 @@ $stamp_color: $content_bg;
.grid_test {
display: grid;
grid-template-columns: repeat(auto-fit, minmax($cell, 1fr));
grid-template-rows: 50vh $cell;
grid-auto-rows: $cell;
// grid-template-columns: repeat(auto-fit, minmax($cell, 1fr));
// grid-template-rows: 50vh $cell;
// grid-auto-rows: $cell;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: 50vh 20vw;
grid-auto-rows: 20vw;
grid-auto-flow: row dense;
grid-column-gap: $gap;
grid-row-gap: $gap;