fix: mobile horizontal overflow and hero responsiveness

- Remove scrollbar-gutter: stable, add overflow-x: hidden on html
- Cap section-glow pseudo-element width to viewport on mobile
- Scale down hero logo, text, spacing, and button for small screens (iPhone SE)
This commit is contained in:
2026-04-03 00:14:42 +03:00
parent bf9b1876b5
commit fa26092ea4
4 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -19,7 +19,7 @@
html {
scroll-behavior: smooth;
scrollbar-gutter: stable;
overflow-x: hidden;
}
body {
+1 -1
View File
@@ -71,7 +71,7 @@
top: 0;
left: 50%;
transform: translateX(-50%);
width: 600px;
width: min(600px, 100%);
height: 400px;
background: radial-gradient(ellipse, rgba(201, 169, 110, 0.05), transparent 70%);
pointer-events: none;