fix(static): prevent mobile layout overflow

This commit is contained in:
Hardik 2026-05-22 18:11:31 +05:30
parent 04f4dcd210
commit e61f052062

View file

@ -76,7 +76,7 @@
} }
html { scroll-behavior: smooth; } 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%; } img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; } a { text-decoration: none; color: inherit; }
@ -551,7 +551,7 @@
/* ── Mobile overrides for added sections ─────────── */ /* ── Mobile overrides for added sections ─────────── */
@media (max-width: 768px) { @media (max-width: 768px) {
#commitment .reveal > div, #commitment .reveal,
#technical-consultancy .reveal { grid-template-columns: 1fr !important; gap: 32px !important; } #technical-consultancy .reveal { grid-template-columns: 1fr !important; gap: 32px !important; }
#audits .container > .reveal { grid-template-columns: 1fr !important; } #audits .container > .reveal { grid-template-columns: 1fr !important; }
#career .container > .reveal { grid-template-columns: 1fr !important; } #career .container > .reveal { grid-template-columns: 1fr !important; }