generated from Deluze/electron-vue-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
31 lines (31 loc) · 884 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
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
play: 'play 500ms linear infinite alternate',
blink: 'blink 500ms linear infinite alternate'
},
keyframes: {
play: {
'0%': { height: '0.125rem' },
'25%': { height: '0.25rem' },
'50%': { height: '0.5rem' },
'75%': { height: '0.75rem' },
'100%': { height: '1rem' }
},
blink: {
'0%': { opacity: '12.5%' },
'100%': { opacity: '100%' }
}
},
fontFamily: {
'basic': ['"Inter"']
}
},
},
plugins: [],
}