mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
29 lines
411 B
JavaScript
29 lines
411 B
JavaScript
module.exports = {
|
|
future: 'all',
|
|
experimental: 'all',
|
|
purge: [],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
variants: [
|
|
'responsive',
|
|
'motion-safe',
|
|
'motion-reduce',
|
|
'group-hover',
|
|
'group-focus',
|
|
'hover',
|
|
'focus-within',
|
|
'focus-visible',
|
|
'focus',
|
|
'active',
|
|
'visited',
|
|
'disabled',
|
|
'checked',
|
|
'first',
|
|
'last',
|
|
'odd',
|
|
'even',
|
|
],
|
|
plugins: [],
|
|
}
|