From c564d1608b7836b30f5abbd333a18e1a343a0d27 Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 13 Oct 2025 22:22:24 +0200 Subject: [PATCH] fix: remove padding on mobile main pane for edge-to-edge content - Changed mobile .pane.main padding from 0.5rem to 0 - Content now extends fully edge-to-edge on mobile - Matches design expectation for mobile reading experience --- src/styles/layout/app.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/layout/app.css b/src/styles/layout/app.css index 743efc6c..1740d0cb 100644 --- a/src/styles/layout/app.css +++ b/src/styles/layout/app.css @@ -78,7 +78,7 @@ .pane.main { margin: 0 auto; - padding: 0.5rem; + padding: 0; } }