-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
62 lines (62 loc) · 1.15 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
62
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./public/index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
maxHeight: {
0: "0",
"1/4": "25%",
"1/2": "50%",
"3/4": "75%",
full: "100%",
80: "80%",
40: "10rem",
48: "12rem",
},
minWidth: {
0: "0",
"1/4": "25%",
"1/2": "50%",
"3/4": "75%",
"5/6": "83.333333%",
},
screens: {
xs: "270px",
xs2: "400px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
extend: {
width: {
"12/25": "48%",
"8/25": "32%",
},
boxShadow: {
focus: "0 0 0 3px rgba(66, 153, 225, 0.5)",
},
transitionProperty: {
height: "height",
},
colors: {
primary: "#0068b4",
primaryDark: "#003e84",
secondary: "#a5a5a5",
// ...
},
opacity: {
10: ".1",
20: ".2",
30: ".3",
40: ".4",
50: ".5",
60: ".6",
70: ".7",
80: ".8",
85: ".85",
90: ".9",
},
},
},
plugins: [],
};