-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (30 loc) · 876 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (30 loc) · 876 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
keyframes: {
'slide-in-right': {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0)' },
},
'sparkle': {
'0%, 100%': { transform: 'scale(1) rotate(0deg)', opacity: '1' },
'25%': { transform: 'scale(1.2) rotate(-10deg)', opacity: '0.9' },
'50%': { transform: 'scale(1.1) rotate(10deg)', opacity: '1' },
'75%': { transform: 'scale(1.15) rotate(-5deg)', opacity: '0.95' },
},
},
animation: {
'slide-in-right': 'slide-in-right 0.2s ease-out',
'sparkle': 'sparkle 0.6s ease-in-out infinite',
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}