From 1a0cf21742275e5fa88ecf12635f3df8fc7132ec Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 21 Dec 2025 21:39:15 -0700 Subject: [PATCH] Fixes the sidebar width in systems that might tweak the sidebar width (closes #27) --- styles/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/main.css b/styles/main.css index 2312044..1d0fec5 100644 --- a/styles/main.css +++ b/styles/main.css @@ -6,4 +6,4 @@ @import url("./apps.css"); /* Make the chat sidebar the same width as all the other tabs */ -.chat-sidebar:not(.sidebar-popout) { width: unset; } +.chat-sidebar:not(.sidebar-popout) { width: var(--sidebar-width); }