noc-book-2/tailwind.config.js
2022-07-20 21:39:22 -04:00

27 lines
575 B
JavaScript

module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
typography: {
DEFAULT: {
css: {
blockquote: {
quotes: 'none',
'& > p': {
marginTop: '0.4em',
marginBottom: '0.4em',
},
},
'code::before': {
content: '""',
},
'code::after': {
content: '""',
},
},
},
},
},
},
plugins: [require('@tailwindcss/typography')],
};