-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (35 loc) · 942 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {sm: "480px", md: "768px", lg: "976px", xl: "1440px" },
animation: {
bounce:
"bounce 0.75s alternate cubic-bezier(0.95, 0.05, 0.795, 0.035) infinite",
slideUpCubiBezier: "slideUp 1s cubic-bezier(0.4, 0.8, 0.6, 1)",
},
animationDelay: {
5: "0.5s",
},
keyframes: {
slideUp: {
from: { transform: "translateY(100%)" },
to: { transform: "translateY(0)" },
},
bounce: {
from: { transform: "translateY(10px)" },
to: { transform: "translateY(0)" },
},
},
},
},
plugins: [],
}