feat: divide most navigation.scss styles into components

- navigation.vue and topNavigation.vue
- contentAuth.vue
This commit is contained in:
Dominik Pschenitschni 2021-10-18 14:33:23 +02:00
parent 57d5afa530
commit 7824ddc13f
No known key found for this signature in database
GPG key ID: B257AC0149F43A77
5 changed files with 421 additions and 431 deletions

View file

@ -171,6 +171,24 @@ export default {
}
}
.mobile-overlay {
display: none;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(250, 250, 250, 0.8);
z-index: 5;
opacity: 0;
transition: all $transition;
@media screen and (max-width: $tablet) {
display: block;
opacity: 1;
}
}
.keyboard-shortcuts-button {
position: fixed;
bottom: calc(1rem - 4px);