Files
pgbackweb/tailwind.config.js
2024-07-23 18:14:15 -06:00

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: {}
}
}