Files
web-temp/tailwind.config.ts
2025-09-09 03:34:09 +00:00

17 lines
412 B
TypeScript

import type { Config } from "tailwindcss";
export default {
content: ["./app/**/*.{js,vue,ts}", "./layers/**/*.{js,vue,ts}"],
theme: {
extend: {
screens: {
xs: "360px", // Mobile: 360px ~ 767px
sm: "768px", // Tablet: 768px ~ 1023px
md: "1024px", // PC: 1024px ~ 1439px
lg: "1440px", // Large PC: 1440px+
},
spacing: {},
},
},
} satisfies Config;