-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
57 lines (55 loc) · 1.06 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}"
],
darkMode: ['class', '[data-theme="dark"]'],
theme: {
extend: {
screens: {
"mobile-sm": {
max: '400px',
},
mobile: {
max: '531px',
},
'anti-mobile': {
min: '531px',
max: '640px',
},
'max-sm': {
max: '640px',
},
'max-md': {
max: '768px',
},
'max-lg': {
max: '1024px',
},
'max-xl': {
'max': '1280px'
},
'max-2xl': {
'max': '1536px'
},
'anti-ham': {
'min': '500px'
},
'hero-section-sm': {
'max': '670px',
},
'hero-section': {
'min': '670px',
'max': '800px',
},
'hero-section-lg': {
'min': '800px',
'max': '960px',
},
}
},
},
plugins: [],
}