mirror of
https://github.com/QingWei-Li/notea.git
synced 2024-11-29 12:53:00 +03:00
19 lines
321 B
JavaScript
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')],
|
|
}
|