1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-28 06:16:39 +07:00

fixed mobile header appearance

This commit is contained in:
Fedor Katurov 2021-10-06 16:44:17 +07:00
parent 73c30b6d25
commit c925ae461a
10 changed files with 66 additions and 43 deletions

View file

@ -44,7 +44,7 @@
@include tablet {
flex: 1;
justify-content: space-around;
justify-content: flex-start;
}
}
@ -56,7 +56,6 @@
.user_button {
flex: 0;
padding-left: $gap / 2;
cursor: pointer;
}
@ -121,6 +120,13 @@
@include tablet {
padding: $gap;
&.notifications {
flex: 1;
justify-content: flex-end;
align-items: center;
margin-right: $gap;
}
&::after {
right: 0;
}
@ -132,3 +138,12 @@
display: none;
}
}
.logo_wrapper {
@include tablet {
&.logged_in {
display: none;
}
}
}