diff --git a/src/css/custom.css b/src/css/custom.css index ec58c8ad..f0366475 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -266,14 +266,6 @@ td { border-radius: 0; } -blockquote p::before, -blockquote p::after, -.markdown blockquote p::before, -.markdown blockquote p::after { - content: none !important; - display: none !important; -} - p { line-height: 1.6; } diff --git a/tailwind.config.ts b/tailwind.config.ts index 7182a84d..bfce3693 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -17,6 +17,26 @@ export default { secondaryInv: "var(--secondaryInv)", tertiaryInv: "var(--tertiaryInv)", }, + typography: { + DEFAULT: { + css: { + "code::before": { + content: '""', + }, + "code::after": { + content: '""', + }, + blockquote: { + "p::before": { + content: "none", + }, + "p::after": { + content: "none", + }, + }, + }, + }, + }, }, }, plugins: [typography()],