open-law/tailwind.config.js

18 lines
326 B
JavaScript
Raw Normal View History

2023-04-20 13:10:16 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2023-05-10 13:45:18 +00:00
darkMode: 'class',
2023-04-20 13:10:16 +00:00
content: [
2023-05-10 13:45:18 +00:00
'./app/templates/**/*.html',
'./src/js/**/*.js',
'./node_modules/flowbite/**/*.js',
2023-04-20 13:10:16 +00:00
],
theme: {
2023-06-20 07:25:11 +00:00
extend: {
margin: {
135: '135px',
},
},
2023-04-20 13:10:16 +00:00
},
2023-05-10 13:45:18 +00:00
plugins: [require('flowbite/plugin')],
2023-04-20 13:10:16 +00:00
};