From 92d30be2fa944bbb5a80bb4242bcca2fa68cd842 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Thu, 1 Oct 2020 17:40:35 +0800 Subject: [PATCH] styles: sidebar: slightly increase the max width In some cases, max width is insufficient and ugly word wrap occurs. --- client/src/sass/components/_sidebar.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/sass/components/_sidebar.scss b/client/src/sass/components/_sidebar.scss index 3c508ce0..546a3342 100644 --- a/client/src/sass/components/_sidebar.scss +++ b/client/src/sass/components/_sidebar.scss @@ -5,7 +5,7 @@ @include theme('color', 'sidebar--foreground'); flex: 1; min-width: 240px; - max-width: 240px; + max-width: 250px; overflow: auto; position: relative; z-index: 2;