From 3b1f094f22046c525469d859a89f477c8b6563e0 Mon Sep 17 00:00:00 2001 From: m Date: Mon, 30 Mar 2026 15:23:57 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20allaisonme.com=20mobile=20view=20?= =?UTF-8?q?=E2=80=94=20constrain=20header=20and=20hero=20glow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sites/allaisonme.com/index.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sites/allaisonme.com/index.html b/sites/allaisonme.com/index.html index ab127ca..c372402 100644 --- a/sites/allaisonme.com/index.html +++ b/sites/allaisonme.com/index.html @@ -38,6 +38,7 @@ line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; + max-width: 100vw; } /* Grain overlay */ @@ -114,8 +115,8 @@ top: 0; left: 50%; transform: translateX(-50%); - width: 600px; - height: 600px; + width: min(600px, 100vw); + height: min(600px, 100vw); background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%); pointer-events: none; opacity: 0.4; @@ -553,6 +554,9 @@ section { padding: 72px 0; } .provocation { padding: 80px 24px; } .cta-section { padding: 80px 24px; } + nav .container { padding: 0 16px; } + .logo { font-size: 0.95rem; } + nav a.cta-link { font-size: 0.75rem; } }