do tailwind overrides in the tailwind config
Some checks failed
CI / quality (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
rcarteraz 2024-11-17 10:25:05 -07:00
parent 3af0fc3794
commit b0277e0d7b
2 changed files with 20 additions and 8 deletions

View file

@ -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;
}

View file

@ -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()],