-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 872 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (34 loc) · 872 Bytes
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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
montserrat: ["Montserrat"],
},
keyframes: {
"balon-small": {
"0%": { opacity: "0", top: "150px" },
"75%": { opacity: "1", top: "50px" },
"100%": { opacity: "0", top: "0px" },
},
"balon-medium": {
"0%": { opacity: "0", top: "200px" },
"75%": { opacity: "1", top: "50px" },
"100%": { opacity: "0", top: "0px" },
},
"balon-lg": {
"0%": { opacity: "0", top: "93%" },
"75%": { opacity: "1", top: "66" },
"100%": { opacity: "0", top: "70%" },
},
},
},
container: {
padding: "2rem",
},
},
plugins: [require("@tailwindcss/forms")],
};