From 5e3ffc12ced1604fa759d53d272e33e805b81157 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Thu, 6 Nov 2025 02:01:03 +0200 Subject: [PATCH] style/zen mode: fix content refusing to get narrower than the max content width preference --- apps/client/src/stylesheets/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/client/src/stylesheets/style.css b/apps/client/src/stylesheets/style.css index b356a0a55..399630fd6 100644 --- a/apps/client/src/stylesheets/style.css +++ b/apps/client/src/stylesheets/style.css @@ -2107,7 +2107,8 @@ body.zen .note-split:not(.full-content-width) .scrolling-container { body.zen .note-split:not(.full-content-width) .note-detail { margin: auto; padding-bottom: 25vh; - width: var(--max-content-width); + max-width: var(--max-content-width); + width: 100%; } body.zen .note-split:not(.full-content-width) .scroll-padding-widget {