fix logging out on mobile

master
Lauren Liberda 2021-09-03 22:07:59 +02:00
parent 2baf509f25
commit 39155efdf1
1 changed files with 17 additions and 0 deletions

View File

@ -64,3 +64,20 @@ $family-sans-serif: BlinkMacSystemFont, -apple-system, sans-serif;
.navbar-item > img {
max-height: 2rem;
}
// fixes to make logging out avoilable on mobile
@media screen and (max-width: $navbar-breakpoint) {
.navbar,
.navbar-menu,
.navbar-end {
align-items: stretch;
display: flex;
}
.navbar-menu {
background-color: transparent;
box-shadow: none;
}
.navbar-brand {
display: none;
}
}