Update Tailwind config file
This commit is contained in:
parent
1935a699d4
commit
2120ba61af
20
tailwind.config.js
Normal file
20
tailwind.config.js
Normal file
|
@ -0,0 +1,20 @@
|
|||
let defaultTheme = require('tailwindcss/defaultTheme')
|
||||
|
||||
module.exports = {
|
||||
prefix: 'tw-',
|
||||
important: true,
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
black: '#000',
|
||||
},
|
||||
variants: {
|
||||
textStyle: ['responsive', 'hover', 'focus', 'hocus'],
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
require('tailwindcss-interaction-variants')(),
|
||||
require('tailwindcss-spaced-items')({ values: defaultTheme.spacing }),
|
||||
],
|
||||
}
|
Loading…
Reference in a new issue