all repos — website @ 31f5c16aaf1aa8b9982dc4b4ec98b848adbf3031

Unnamed repository; edit this file 'description' to name the repository.

fix: prevent background bleed
vi did:web:vt3e.cat
Mon, 11 May 2026 02:46:46 +0100
commit

31f5c16aaf1aa8b9982dc4b4ec98b848adbf3031

parent

15434aa8a18c734980b98b9b6ea6004e1648e563

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M src/layouts/Layout.astrosrc/layouts/Layout.astro

@@ -71,9 +71,9 @@ z-index: 1;

background: hsla(var(--crust) / 1); box-shadow: 0 0.5rem 2rem hsla(var(--shadow) / 0.5); - width: calc(100% - 1rem); + width: calc(100% - 0.2rem); max-width: 60ch; - margin: 90dvh 0.5rem 0 0.5rem; + margin: 90dvh 0.1rem 0 0.1rem; border-radius: 2rem 2rem 0 0; overflow: hidden;

@@ -92,7 +92,7 @@ &::after {

--height: 0.5rem; content: ""; position: absolute; - top: 100%; + top: calc(100% - 1px); left: 0; display: block; width: 100%;

@@ -161,7 +161,7 @@ &::after {

--height: 0.5rem; content: ""; position: absolute; - bottom: calc(var(--height) * -1); + top: calc(100% - 1px); left: 0; display: block; width: 100%;