1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +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);
padding: $gap / 2;
border-radius: 0 0 $radius $radius;
flex-wrap: wrap;
}
.uploads {

View file

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