-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
executable file
·61 lines (61 loc) · 1.28 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
58
59
60
61
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {},
spacing: {
"1pt": "1pt",
"8pt": "8pt",
"10pt": "10pt",
"16pt": "16pt",
"24pt": "24pt",
"25pt": "25pt",
"37pt": "37pt",
"40pt": "40pt",
"45pt": "45pt",
"58pt": "58pt",
"60pt": "60pt",
"70pt": "70pt",
"76pt": "76pt",
"90pt": "90pt",
"120pt": "120pt",
"136pt": "136pt",
"210pt": "210pt",
"298pt": "298pt",
"312pt": "312pt",
"100pt": "100pt",
},
margin: {},
padding: {},
fontSize: {},
borderWidth: {},
zIndex: {},
flexShrink: {},
lineHeight: {},
minWidth: {},
maxWidth: {},
minHeight: {},
},
screens: {
// xxs: { min: "320", max: "375" },
xs: "386px",
sm: "500px",
"2sm": "641px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
boxShadow: {}
},
variants: {
extend: {},
},
plugins: [
require("@tailwindcss/line-clamp"),
require("tailwind-scrollbar"),
require("tailwindcss"),
],
}