Skip to content

Commit 2b2da55

Browse files
p4gsclaudehappy-otter
committed
fix: remove overflow-x:clip from html to stop clipping 3D canvas
overflow-x:clip on html clips fixed-position elements like the canvas. Changed to overflow-x:hidden on body only, which prevents horizontal scrollbars without clipping the fixed canvas. 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 f88b00c commit 2b2da55

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/projects/nthpartyfinder/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@
776776
.footer a { color: var(--neon-pink); }
777777

778778
/* ── RESPONSIVE ── */
779-
html, body { overflow-x: clip; max-width: 100vw; }
779+
body { overflow-x: hidden; max-width: 100vw; }
780780

781781
.install-card pre {
782782
max-width: 100%;

0 commit comments

Comments
 (0)