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:
parent
32a23ecffd
commit
fc8ac3d541
8 changed files with 63 additions and 22 deletions
|
@ -80,3 +80,4 @@ body {
|
|||
:global(h2) {
|
||||
font: $font_24_bold;
|
||||
}
|
||||
|
||||
|
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue