123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import type { Config } from 'tailwindcss'
- export default {
- content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
- corePlugins: {
- preflight: false
- },
- theme: {
- screens: {
- mobile: { max: '750px' },
- pc: '751px',
- sm: '640px',
-
- md: '768px',
-
- lg: '1024px',
-
- xl: '1440px',
-
- '2xl': '1536px'
-
- },
-
-
-
-
-
-
-
-
-
- extend: {}
- },
- plugins: []
-
- } satisfies Config
|