refactor: ♻️ move blockquote styles from layout to main css file

Excessive use of the prose- prefix bloats the resulting CSS bundle and makes styles rather hard to maintain
This commit is contained in:
Sebin Nyshkim 2025-06-04 16:43:03 +02:00
parent ff3c0fb23a
commit ce7de30e5c
2 changed files with 10 additions and 1 deletions

View file

@ -40,6 +40,15 @@ h6 {
font-family: var(--font-heading);
}
blockquote {
@apply relative mt-10 rounded-xl border-2 border-sky-500 ps-6 pe-6 font-normal text-slate-700 not-italic *:before:content-none *:after:content-none lg:ps-8 lg:pe-8 2xl:ps-10 2xl:pe-10 dark:text-slate-300;
&::before {
@apply absolute -top-8 left-4 block h-12 w-20 bg-slate-300 text-center text-8xl leading-none font-bold text-slate-300 not-italic content-['“'] dark:bg-slate-900 dark:text-slate-900;
-webkit-text-stroke: var(--color-sky-600) 0.25rem;
}
}
pre,
code {
font-family: var(--font-monospace);