mirror of
https://github.com/woodchen-ink/openai-billing-query.git
synced 2025-07-18 14:01:59 +08:00
37 lines
628 B
JavaScript
37 lines
628 B
JavaScript
module.exports = {
|
|
|
|
theme: {
|
|
screens: {
|
|
"sm": "640px",
|
|
"md": "768px",
|
|
"lg": "1024px",
|
|
"xl": "1280px",
|
|
"2xl": "1600px",
|
|
'sm': '576px',
|
|
"2xl":{'max': '1600px'},
|
|
// => @media (min-width: 576px) { ... }
|
|
|
|
'md': '960px',
|
|
// => @media (min-width: 960px) { ... }
|
|
|
|
'lg': '1560px',
|
|
// => @media (min-width: 1440px) { ... }
|
|
}
|
|
},
|
|
|
|
plugins: [require("daisyui")],
|
|
|
|
|
|
// daisyui: {
|
|
// themes: false,
|
|
// darkTheme: "dark",
|
|
// base: true,
|
|
// styled: true,
|
|
// utils: true,
|
|
// rtl: false,
|
|
// prefix: "",
|
|
// logs: true,
|
|
// },
|
|
|
|
//...
|
|
} |