-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 971 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (36 loc) · 971 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
35
36
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
screens: {
portrait: { raw: "(orientation: portrait)" },
landscape: { raw: "(orientation: landscape)" },
},
animation: {
"spin-slow": "scenario 40s linear infinite",
"slow-ping": "ping 2.5s cubic-bezier(0, 0, 0.2, 1) infinite",
"slow-pulse": "pulse-slow 2.5s cubic-bezier(0, 0, 0.2, 1) infinite",
scenario: "scenario 10s ease-in-out infinite",
},
keyframes: {
scenario: {
"0%, 100%": { transform: "rotate(-45deg)" },
"50%": { transform: "rotate(45deg)" },
},
"pulse-slow": {
"0%, 100%": {
opacity: 0.2,
},
"50%": {
opacity: 0.8,
},
},
},
},
},
variants: {
extend: {},
},
plugins: [],
};