From 58ce457c7f4464cf77c7779a30ca9069c2c40dea Mon Sep 17 00:00:00 2001 From: Christian Wolf Date: Sun, 10 Apr 2022 15:19:35 +0200 Subject: [PATCH] Prevent horizontal overflow on all pages --- slt/css/layout/_topmenu.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/slt/css/layout/_topmenu.scss b/slt/css/layout/_topmenu.scss index b86e283..ef6bcae 100644 --- a/slt/css/layout/_topmenu.scss +++ b/slt/css/layout/_topmenu.scss @@ -7,7 +7,7 @@ @include abstract.for-desktop { display: flex; - width: 100vw; + width: 100%; font-weight: bold; text-align: center; @@ -156,8 +156,8 @@ @include abstract.for-desktop { position: sticky; top: 0; - width: 100vw; - height: 40px; + width: 100%; + // height: 40px; z-index: 1; } }