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

added editor media query

This commit is contained in:
muerwre 2019-08-01 21:53:01 +07:00
parent 3ed85eb1c5
commit 132fe872b6

View file

@ -70,12 +70,17 @@
flex: 1; flex: 1;
padding: $gap; padding: $gap;
padding-bottom: 0; padding-bottom: 0;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
display: grid; display: grid;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
grid-column-gap: $gap; grid-column-gap: $gap;
grid-row-gap: $gap; grid-row-gap: $gap;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
@media(max-width: 600px) {
grid-template-columns: repeat(auto-fill, minmax(30vw, 1fr));
}
} }
.cell { .cell {