-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
45 lines (44 loc) · 1.03 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
keyframes:{
"star-fall":{
"0%":{
"transform":"rotate(315deg) translateX(0)",
"opacity":"0.7",
},
"70%":{
"opacity":"0.7",
},
"100%":{
"transform":"rotate(315deg) translateX(-4000px)",
"opacity":"0",
}
},
"fade-in":{
"0%":{
"opacity":"0",
},
"100%":{
"opacity":"1",
}
}
},
animation:{
"star-fall":"star-fall 3s ease-in infinite",
"fade-in":"fade-in 2s ease-in"
},
boxShadow:{
"star":"0 0 0 4px rgba(255,255,255,0.1),0 0 0 6px rgba(255,255,255,0.1),0 0 0 8px rgba(255,255,255,0.1)"
},
},
},
plugins: [],
};
export default config;