-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 978 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
38 lines (38 loc) · 978 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
37
38
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
mono: [
'ui-monospace',
'Cascadia Code',
'SF Mono',
'Menlo',
'Consolas',
'monospace',
],
},
keyframes: {
blink: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-8px)' },
},
'ping-slow': {
'0%': { transform: 'scale(1)', opacity: '0.5' },
'100%': { transform: 'scale(2.2)', opacity: '0' },
},
},
animation: {
blink: 'blink 1s step-end infinite',
float: 'float 3s ease-in-out infinite',
'ping-slow': 'ping-slow 2s cubic-bezier(0,0,0.2,1) infinite',
},
},
},
plugins: [],
}