From 0d26a20eb743ed7fdf084005ade3a92dfc9a503a Mon Sep 17 00:00:00 2001 From: filifa Date: Mon, 27 May 2024 17:16:06 -0500 Subject: [PATCH] fix width on about page --- styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index 0ca6d54..4dae4f5 100644 --- a/styles.css +++ b/styles.css @@ -7,7 +7,6 @@ html { body { display: grid; - place-items: center; place-content: center; } @@ -140,6 +139,7 @@ ol ol ol { @media screen and (min-width: 80ch) { main { + min-width: 100%; display: flex; align-items: start; } @@ -152,7 +152,7 @@ ol ol ol { } article { - max-width: 80ch; + width: 80ch; flex: auto; } }