From 84076475652bc4b4506d710a611fc3be661018e5 Mon Sep 17 00:00:00 2001 From: Eleni Arvanitis Konior Date: Sat, 18 Apr 2026 18:41:13 -0400 Subject: [PATCH 1/2] fix: restore default line-height on UsesSection call-to-action text line-height: 1 caused cramped spacing on mobile when CTA text wrapped. Co-Authored-By: Claude Sonnet 4.6 --- client/components/uses/Uses.module.css | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/components/uses/Uses.module.css b/client/components/uses/Uses.module.css index aa9213d..dc2c0d7 100644 --- a/client/components/uses/Uses.module.css +++ b/client/components/uses/Uses.module.css @@ -65,7 +65,6 @@ color: ghostwhite; font-style: italic; font-size: 15px; - line-height: 1; } .callToActionAnchor { @@ -73,7 +72,6 @@ text-decoration: none; font-weight: 600; font-size: 15px; - line-height: 1; padding-bottom: 10px; } From 7f4c29ccc575cea3dcb24766b8abd6bf716b5656 Mon Sep 17 00:00:00 2001 From: Eleni Arvanitis Konior Date: Sat, 18 Apr 2026 18:45:55 -0400 Subject: [PATCH 2/2] fix: align hamburger menu overlay with navbar on large screens top: 8.5% created a gap on tall viewports where page content was visible behind the open menu. Changed to top: 4rem to match the existing height: calc(100% - 4rem). Co-Authored-By: Claude Sonnet 4.6 --- client/components/navigation/Hamburger.module.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/navigation/Hamburger.module.css b/client/components/navigation/Hamburger.module.css index e27f67f..0a3a342 100644 --- a/client/components/navigation/Hamburger.module.css +++ b/client/components/navigation/Hamburger.module.css @@ -5,7 +5,7 @@ margin: 0; padding: 0; position: fixed; - top: 8.5%; + top: 4rem; z-index: 1; left: 0; width: 100%;