Skip to content

Commit 35e9524

Browse files
p4gsclaudehappy-otter
committed
Fix scrolling: use overflow-x:clip instead of overflow:hidden
overflow:hidden on html killed vertical scrolling. overflow-x:clip prevents horizontal overflow without creating a scroll container. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
1 parent ef1c6a1 commit 35e9524

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/projects/nthpartyfinder/index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -714,8 +714,7 @@
714714
.footer a { color: var(--neon-pink); }
715715

716716
/* ── RESPONSIVE ── */
717-
html { overflow: hidden; width: 100%; height: 100%; }
718-
body { overflow-x: hidden; overflow-y: auto; width: 100%; max-width: 100vw; }
717+
html, body { overflow-x: clip; max-width: 100vw; }
719718

720719
.install-card pre {
721720
max-width: 100%;

0 commit comments

Comments
 (0)