Skip to content

Commit 478e6ea

Browse files
p4gsclaudehappy-otter
committed
fix: set html/body background to black to prevent white bleed-through
The 3D canvas is position:fixed at 100vh, but the default white html background was visible in areas where content extended beyond. 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 4ead926 commit 478e6ea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/projects/nthpartyfinder/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@
4848
}
4949

5050
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
51-
html { scroll-behavior: smooth; }
51+
html { scroll-behavior: smooth; background: #000; }
5252
body {
5353
font-family: var(--font-body);
5454
font-size: 16px;
5555
line-height: 1.65;
5656
color: var(--text);
57-
background: transparent;
57+
background: #000;
5858
-webkit-font-smoothing: antialiased;
5959
padding-top: 68px;
6060
}

0 commit comments

Comments
 (0)