fix(design-v2): make body bg transparent so harbor pseudo shows through
CI / test (push) Has been cancelled

body had opaque background: var(--color-bg) which sat at z-index 0 and
covered the body::before harbor at z-index -3. Switched body to
transparent and put the fallback color on html instead.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-15 15:51:18 -04:00
parent b8d120e74c
commit c0f6ba2651
+5 -1
View File
@@ -98,10 +98,14 @@
*/
[data-design="v2"] body {
color: var(--color-text);
background: var(--color-bg);
background: transparent;
position: relative;
min-height: 100dvh;
}
[data-design="v2"] html {
/* Below body's pseudo-elements; shows through if anything has alpha */
background: var(--color-bg);
}
[data-design="v2"] body::before {
content: '';
position: fixed;