openai-billing-query/tailwind.config.js
2023-09-01 22:05:27 +08:00

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,
// },
//...
}