mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-01-24 21:48:30 -06:00
17 lines
346 B
JavaScript
17 lines
346 B
JavaScript
/** @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: {},
|
|
}
|
|
}
|