mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
14 lines
313 B
SCSS
14 lines
313 B
SCSS
.uploads {
|
|
min-height: 200px;
|
|
padding-bottom: 60px;
|
|
box-sizing: border-box;
|
|
|
|
display: grid;
|
|
grid-column-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));
|
|
}
|
|
}
|