mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-01-03 10:50:15 -06:00
Add Tailwind CSS configuration file
This commit is contained in:
16
tailwind.config.js
Normal file
16
tailwind.config.js
Normal 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: {},
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user