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

fixed node appearance

This commit is contained in:
muerwre 2019-08-20 21:51:20 +07:00
parent 32a23ecffd
commit fc8ac3d541
8 changed files with 63 additions and 22 deletions

View file

@ -80,3 +80,4 @@ body {
:global(h2) {
font: $font_24_bold;
}

View file

@ -101,3 +101,24 @@ $input_shadow_filled: $input_shadow;
touch-action: none;
}
}
@mixin phone {
@content;
}
@mixin tablet {
@media (max-width: 599px) { @content; }
}
@mixin vertical_at_tablet {
@media (max-width: 599px) {
flex-direction: column !important;
& > * {
margin: $gap/2 0 !important;
&:first-child { margin-top: 0 !important; }
&:last-child { margin-bottom: 0 !important; }
}
}
}