-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
41 lines (41 loc) · 1.06 KB
/
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
37
38
39
40
41
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
hubot: ['Hubot Sans', 'sans-serif'],
hubot2: ['Hubot Sans', 'sans-serif'],
inter: ['Inter', 'sans-serif'],
montserrat: ['Montserrat', 'sans-serif'],
},
keyframes: {
growingFadeIn: {
from: { opacity: '0', transform: 'scale(0.95)' },
to: { opacity: '1', transform: 'scale(1)' },
},
fadeIn: {
from: { opacity: '0' },
to: { opacity: '1' },
},
grow: {
from: { transform: 'scale(0.95)' },
to: { transform: 'scale(1)' },
},
slide: {
from: { transform: 'translateX(-8em)' },
to: { transform: 'translateX(0)' },
},
},
animation: {
fadeIn: 'fadeIn 1.5s',
growingFadeIn: 'growingFadeIn 1.5s',
grow: 'grow 1.5s',
slide: 'slide 1.5s',
},
},
},
plugins: [require('@tailwindcss/aspect-ratio')],
}