mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-01-24 05:28:36 -06:00
17 lines
341 B
JavaScript
17 lines
341 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: {}
|
|
}
|
|
}
|