notea/tailwind.config.js
2021-02-21 14:34:22 +08:00

19 lines
321 B
JavaScript

module.exports = {
purge: ['./**/*.tsx'],
darkMode: 'media',
theme: {
extend: {
cursor: {
'col-resize': 'col-resize',
},
},
},
variants: {
extend: {
display: ['group-hover'],
backgroundColor: ['active'],
},
},
plugins: [require('@tailwindcss/typography')],
}