diff --git a/src/components/home/contentAuth.vue b/src/components/home/contentAuth.vue index e600bc170..d68cdb43f 100644 --- a/src/components/home/contentAuth.vue +++ b/src/components/home/contentAuth.vue @@ -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); diff --git a/src/components/home/navigation.vue b/src/components/home/navigation.vue index d19b9dae6..838841399 100644 --- a/src/components/home/navigation.vue +++ b/src/components/home/navigation.vue @@ -275,7 +275,293 @@ export default { } -