From 812da2a8572530d950aca8f72149753be0116e79 Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Tue, 20 Feb 2024 11:46:55 +0100 Subject: [PATCH] fix(css): :bug: main width don't fill parent --- src/stylesheets/layout.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stylesheets/layout.css b/src/stylesheets/layout.css index b722fba..736ff48 100644 --- a/src/stylesheets/layout.css +++ b/src/stylesheets/layout.css @@ -4,6 +4,7 @@ body { } main { + width: 100%; max-width: var(--_wide-screen); margin: auto; padding: var(--_gap);