fix: harden dark background — html + body + .post all set to var(--c-bg)

This commit is contained in:
2026-06-14 01:33:08 +01:00
parent f42c76308c
commit b0a69cc658
16 changed files with 62 additions and 0 deletions
+3
View File
@@ -63,6 +63,8 @@
*, *::before, *::after { box-sizing: border-box; }
html { background: var(--c-bg); }
body {
margin: 0;
padding: 0;
@@ -76,6 +78,7 @@
/* ── Post container ── */
.post {
background: var(--c-bg);
max-width: 720px;
margin: 0 auto;
padding: 48px 24px 60px;
Before
After