From e9b9e8d50bbe6bd3c0efef9f03d185f20dc71568 Mon Sep 17 00:00:00 2001 From: Broque Thomas Date: Tue, 30 Sep 2025 10:31:05 -0700 Subject: [PATCH] Update style.css --- webui/static/style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/webui/static/style.css b/webui/static/style.css index 19781a50..2d927fc0 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -4162,6 +4162,18 @@ body { height: 95%; } +/* Hide sidebar on laptop and smaller screens */ +@media (max-width: 1300px) { + .sync-content-area { + grid-template-columns: 1fr; /* Single column - main panel takes full width */ + gap: 0; + } + + .sync-sidebar { + display: none !important; /* Hide sidebar completely - use !important to override other rules */ + } +} + .sync-main-panel, .sync-sidebar { background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(18, 18, 18, 0.98)); backdrop-filter: blur(10px);