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

flow appearance

This commit is contained in:
Fedor Katurov 2019-10-19 21:39:23 +07:00
parent 6917c465f3
commit 5d7b76f003
2 changed files with 25 additions and 2 deletions

View file

@ -106,7 +106,9 @@ $input_shadow_filled: $input_shadow;
}
@mixin phone {
@content;
@media (max-width: 320px) {
@content;
}
}
@mixin tablet {
@ -114,6 +116,11 @@ $input_shadow_filled: $input_shadow;
@content;
}
}
@mixin desktop {
@media (max-width: $content_width) {
@content;
}
}
@mixin vertical_at_tablet {
@media (max-width: 599px) {