mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-08-29 02:25:26 +00:00
18 lines
375 B
JavaScript
18 lines
375 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
|
darkMode: "class",
|
|
theme: {
|
|
screens: {
|
|
"3xl": { max: "2047px" },
|
|
"2xl": { max: "1535px" },
|
|
xl: { min: "1024px" },
|
|
lg: { max: "1023px" },
|
|
md: { max: "820px" },
|
|
sm: { max: "639px" },
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|