|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./app/templates/**/*.html',
|
|
'./src/js/**/*.js',
|
|
'./node_modules/flowbite/**/*.js',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
margin: {
|
|
135: '135px',
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('flowbite/plugin')],
|
|
};
|