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: [],
|
||||
darkMode: false, // or 'media' or 'class'
|
||||
theme: {
|
||||
extend: {
|
||||
typography: {
|
||||
DEFAULT: {
|
||||
css: {
|
||||
"pre code::after": {
|
||||
content: "none",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
screens: {
|
||||
sm: "640px",
|
||||
md: "768px",
|
||||
|
|
|
|||
Loading…
Reference in New Issue