From e61f052062ee4e8a5a9fde4b3bdb12be1ae71be2 Mon Sep 17 00:00:00 2001 From: Hardik Date: Fri, 22 May 2026 18:11:31 +0530 Subject: [PATCH] fix(static): prevent mobile layout overflow --- static/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/index.html b/static/index.html index 7dfd69d..2cffedc 100644 --- a/static/index.html +++ b/static/index.html @@ -76,7 +76,7 @@ } html { scroll-behavior: smooth; } - body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; } + body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; } img { display: block; max-width: 100%; } a { text-decoration: none; color: inherit; } @@ -551,7 +551,7 @@ /* ── Mobile overrides for added sections ─────────── */ @media (max-width: 768px) { - #commitment .reveal > div, + #commitment .reveal, #technical-consultancy .reveal { grid-template-columns: 1fr !important; gap: 32px !important; } #audits .container > .reveal { grid-template-columns: 1fr !important; } #career .container > .reveal { grid-template-columns: 1fr !important; }