Add Tailwind CSS configuration file

This commit is contained in:
Luis Eduardo Jeréz Girón
2024-07-19 18:31:32 -06:00
parent fa3e8cf1ca
commit bb1ccaf4ea

16
tailwind.config.js Normal file
View File

@@ -0,0 +1,16 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./internal/view/web/**/*.go'],
plugins: [require('daisyui')],
daisyui: {
logs: false,
themes: ["light", "dim"],
darkTheme: "dim",
},
theme: {
screens: {
'desk': '768px', // only one breakpoint to keep it simple
},
extend: {},
}
}