From b70473cc924fec058f9ad7d5acb262e9e7cce934 Mon Sep 17 00:00:00 2001 From: Andrew Zambazos Date: Sun, 28 Dec 2025 11:59:43 +1300 Subject: [PATCH] Update home webview display style Changed #home-webview display from flex to block and removed the flex property to improve layout consistency when the home container is active. --- renderer/style.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/renderer/style.css b/renderer/style.css index 8a0c73a..8c264cc 100644 --- a/renderer/style.css +++ b/renderer/style.css @@ -410,13 +410,12 @@ body:has(#home-container.active) #downloads-btn { height: 100%; border: none; display: none; - flex: 1; position: relative; z-index: 0; } /* Show home webview when container is active */ #home-container.active > #home-webview { - display: flex; + display: block; } /* TABS */