From 46e9486e325bb7b304d641c64bb070352d5c3f5b Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 27 Mar 2026 17:36:40 -0700 Subject: [PATCH] Fix: Replace 100vw with 100% to fix centering Co-authored-by: Opus 4.6 --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index cce9ae6..47a21d0 100644 --- a/index.html +++ b/index.html @@ -14,8 +14,8 @@ body, html { margin: 0; padding: 0; - width: 100vw; - height: 100vh; + width: 100%; + height: 100%; overflow: hidden; background-color: #ffffff; color: #000000;