From bc7d7ab94c0b9d3a208b578cf2c89b3f2a28e9fe Mon Sep 17 00:00:00 2001 From: Marie Birner Date: Mon, 24 Apr 2023 14:28:34 +0200 Subject: [PATCH] [BUGFIX] sidebar width flexibility --- frontend/scss/components/_sidebar.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/scss/components/_sidebar.scss b/frontend/scss/components/_sidebar.scss index 5f7116b..aa9d910 100644 --- a/frontend/scss/components/_sidebar.scss +++ b/frontend/scss/components/_sidebar.scss @@ -14,7 +14,8 @@ height: 100vh; right: 0; top: 0; - width: 375px; + width: 100%; + max-width: 375px; z-index: 40000; } @@ -71,7 +72,8 @@ &-header { position: fixed; - width: 375px; + width: 100%; + max-width: 375px; top: 0; z-index: 1; }