From d4df6dd6c0706c60a50b08bc02428b1f7ba2676a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Sun, 3 Sep 2023 18:55:41 +0200 Subject: [PATCH] Shrink the grid and body further down to 100rem --- src/styles/global.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/global.css b/src/styles/global.css index a724145..e023383 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -1,10 +1,11 @@ :root { --grid-gutter: 3rem; + --grid-max-width: 100rem; } body { margin: 0 auto; - max-width: min(100rem, 75%); + max-width: min(var(--grid-max-width), 75%); } a:focus {