From 8f7a74941011a5e931276abe06745b6a6d4d4248 Mon Sep 17 00:00:00 2001 From: Seth Brasile Date: Wed, 25 Sep 2024 09:53:20 -0500 Subject: [PATCH] fix width on mobile --- src/app/public/style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/public/style.css b/src/app/public/style.css index 2c235ba..3f6016c 100644 --- a/src/app/public/style.css +++ b/src/app/public/style.css @@ -26,6 +26,7 @@ a:hover { body { display: flex; + width: 100vw; } #main-page { @@ -40,7 +41,8 @@ h1 { } #app { - max-width: 1280px; + max-width: 100vw; + /* max-width: 1280px; */ padding: 2rem; }