Tidy header for non-authenticated visitors

with the help of a login modal
This commit is contained in:
Joachim
2021-11-27 19:18:20 +01:00
parent ad6c860951
commit 4ed4278826
3 changed files with 141 additions and 20 deletions

View File

@ -25,10 +25,26 @@ body {
overflow-x: auto;
}
.modal-card:focus {
outline-style: auto;
}
.modal-card:focus:not(:focus-visible) {
outline-style: initial;
}
.modal-card:focus-visible {
outline-style: auto;
}
.modal-card.is-fullwidth {
min-width: 75% !important;
}
@media only screen and (min-width: 769px) {
.modal-card.is-thin {
width: 350px !important;
}
}
.modal-card-body {
max-height: 70vh;
}