mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-02-21 03:25:51 -08:00
do tailwind overrides in the tailwind config
This commit is contained in:
parent
3af0fc3794
commit
b0277e0d7b
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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()],
|
||||
|
|
Loading…
Reference in a new issue