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

hiding buttons on mobile

This commit is contained in:
Fedor Katurov 2021-02-26 15:58:52 +07:00
parent 2d034f2fbb
commit d42a98957d
2 changed files with 5 additions and 0 deletions

View file

@ -26,6 +26,7 @@
background: transparentize(black, 0.8); background: transparentize(black, 0.8);
padding: $gap / 2; padding: $gap / 2;
border-radius: 0 0 $radius $radius; border-radius: 0 0 $radius $radius;
flex-wrap: wrap;
} }
.uploads { .uploads {

View file

@ -4,4 +4,8 @@
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
height: 32px; height: 32px;
@media(max-width: 480px) {
display: none;
}
} }