fix: improve blockquote dark mode and border styling

Adds dark mode text colour via .is-dark selector, replaces full dotted
border with a left-only accent-coloured border with inner glow effect.
This commit is contained in:
2026-03-03 18:06:56 -08:00
committed by Naomi Carrigan
parent 71f184f696
commit d9644d3a57
+8 -1
View File
@@ -34,8 +34,15 @@ blockquote p {
@apply text-center;
}
.is-dark blockquote,
.is-dark blockquote p {
color: var(--foreground);
}
blockquote {
border: 2px dotted;
border-left: 5px solid var(--accent);
box-shadow: inset 4px 0 10px -4px var(--accent);
padding-left: 1rem;
margin: 1rem;
}