From 138f5d803097b2e57256ccba1b31f551a05f67c4 Mon Sep 17 00:00:00 2001 From: mARTin Date: Mon, 23 Feb 2026 22:06:16 +0100 Subject: [PATCH] fix: restore settings sidebar visibility by fixing CSS positioning - Reverted right: -480px to right: 0 in globals.css - Maintained widened sidebar (480px) while fixing the translateX animation conflict --- src/app/globals.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/globals.css b/src/app/globals.css index ab5fe63..44a7718 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -2670,7 +2670,7 @@ h3 { .weekly-settings-sidebar { position: fixed; top: 0; - right: -480px; + right: 0; width: 480px; max-width: 90vw; height: 100vh;