From eeb40306dafdddce2c3594adfb8ab99c690ac1da Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 13 Oct 2025 18:25:08 +0200 Subject: [PATCH] style(layout): make main pane full width when displaying videos --- src/styles/layout/app.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/layout/app.css b/src/styles/layout/app.css index 8eaef5f6..201a27e5 100644 --- a/src/styles/layout/app.css +++ b/src/styles/layout/app.css @@ -60,9 +60,9 @@ contain: layout style; } -/* When the reader contains a video, allow a wider main pane */ +/* When the reader contains a video, let the main pane use full available width */ .pane.main:has(.reader-video) { - max-width: var(--main-max-width-video); + max-width: none; } /* Remove padding when sidebar is collapsed for zero gap */