-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (51 loc) · 997 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
preflight: false,
},
important: "#__next",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
amazon_blue: {
dark: "var(--amazon-blue)",
light: "var(--amazon-lighter-blue)",
DEFAULT: "var(--amazon-blue)"
}
},
width: {
"50": "50px",
"100": "200px",
"250": "250px"
},
minWidth: {
"400": "400px"
},
margin: {
"4px": "4px",
"16px": "16px"
},
height: {
"56px": "56px",
"39px": "39px"
},
padding: {
"8px": "8px"
},
screens: {
"sm": "600x",
"md": "900px",
"lg": "1200px",
"xl": "1536px",
"tablet": "640px",
"laptop": "1024px",
"desktop": "1280px",
}
},
},
plugins: [],
}