From 73fdbfd8e76b532b54044ac6912440859e25ecbc Mon Sep 17 00:00:00 2001 From: Afrin Nahar Date: Thu, 30 Nov 2023 23:28:55 +0600 Subject: [PATCH 1/2] Fixes issue of text overflow on sidebar in environment page --- src/components/Sidebar.module.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/Sidebar.module.css b/src/components/Sidebar.module.css index 674a5dc8..f88772d1 100644 --- a/src/components/Sidebar.module.css +++ b/src/components/Sidebar.module.css @@ -49,6 +49,9 @@ flex-grow: 1; position: relative; overflow-y: auto; + & ul li h4 { + text-wrap: pretty; + } } .active a h4 { From 029d13be559c3e36ea47fb8ae7ea5401c65b9fd0 Mon Sep 17 00:00:00 2001 From: Afrin Nahar Date: Mon, 15 Jul 2024 23:53:25 +0600 Subject: [PATCH 2/2] fixes sidebar module title text wrap --- src/components/Sidebar.module.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Sidebar.module.css b/src/components/Sidebar.module.css index f88772d1..b4eda1e2 100644 --- a/src/components/Sidebar.module.css +++ b/src/components/Sidebar.module.css @@ -30,6 +30,7 @@ .title { font-size: var(--text-reduced); padding-top: 20px; + text-wrap: pretty; } .toggleButton {