-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
57 lines (50 loc) · 1.13 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
import daisyui from "daisyui";
export default {
plugins: [daisyui],
daisyui: { themes: [], logs: false },
content: ["./**/*.tsx"],
theme: {
theme: {
container: {
center: true,
screens: {
desktop: "95rem",
},
padding: {
desktop: "2.5rem",
mobile: "1.25rem",
},
},
},
extend: {
animation: {
sliding: "sliding 30s linear infinite",
},
keyframes: {
sliding: {
"0%": { transform: "translateX(0)" },
"100%": { transform: "translateX(-50%)" },
},
},
fontFamily: {
"beccaPerry": ["BeccaPerry", "sans-serif"],
},
},
screens: {
"mobile": { max: "1023px" },
// =< @media (max-width: 1023px) { ... }
"tablet": "680px",
// => @media (min-width: 680px) { ... }
"desk": "1024px",
// => @media (min-width: 1024px) { ... }
"desk-small": { max: "1200px" },
// =< @media (min-width: 1200px) { ... }
"max-1330": {
max: "1330px",
},
"max-1240": {
max: "1240px",
},
},
},
};