mirror of https://github.com/kcal-app/kcal.git
22 lines
458 B
JavaScript
22 lines
458 B
JavaScript
const defaultTheme = require('tailwindcss/defaultTheme');
|
|
|
|
module.exports = {
|
|
purge: ['./storage/framework/views/*.php', './resources/views/**/*.blade.php'],
|
|
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
|
|
},
|
|
},
|
|
},
|
|
|
|
variants: {
|
|
extend: {
|
|
opacity: ['disabled'],
|
|
},
|
|
},
|
|
|
|
plugins: [require('@tailwindcss/forms')],
|
|
};
|