-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
44 lines (43 loc) · 1021 Bytes
/
tailwind.config.ts
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
import daisyui from "daisyui";
export default {
plugins: [daisyui],
daisyui: { themes: [], logs: false },
content: ["./**/*.tsx"],
theme: {
container: {
center: true,
screens: {
md: "100%",
lg: "100%",
xl: "100%",
"2xl": "100%",
},
},
extend: {
boxShadow: {
"custom": "1.28px 1.28px 5.12px 0px rgba(0, 0, 0, 0.25)",
"custom-2": "0px 0px 20px 0px #1E253714",
},
animation: {
sliding: "sliding 30s linear infinite",
},
spacing: {
15: "60px",
},
keyframes: {
sliding: {
"0%": { transform: "translateX(0)" },
"100%": { transform: "translateX(-50%)" },
},
},
},
screens: {
phone: { max: "768px" },
mobile: { max: "1025px" },
desktop: { min: "1026px" },
"desktop-lg": { min: "1340px" },
"desktop-sm": { min: "1026px", max: "1200px" },
"mobile-lg": { min: "768px", max: "1025px" },
},
},
};