Fix extra space in code block on Firefox
See: https://github.com/tailwindlabs/tailwindcss-typography/pull/41
This commit is contained in:
parent
c05b40034a
commit
766117ea14
|
|
@ -5,6 +5,17 @@ module.exports = {
|
||||||
presets: [],
|
presets: [],
|
||||||
darkMode: false, // or 'media' or 'class'
|
darkMode: false, // or 'media' or 'class'
|
||||||
theme: {
|
theme: {
|
||||||
|
extend: {
|
||||||
|
typography: {
|
||||||
|
DEFAULT: {
|
||||||
|
css: {
|
||||||
|
"pre code::after": {
|
||||||
|
content: "none",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
screens: {
|
screens: {
|
||||||
sm: "640px",
|
sm: "640px",
|
||||||
md: "768px",
|
md: "768px",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue