-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
38 lines (38 loc) · 1.2 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
module.exports = {
content: [
'./src/**/*.{html,js,svelte,ts}'
],
plugins: [
require('tailwindcss-image-rendering')()
],
variants: {
imageRendering: ['responsive'],
},
theme: {
fontFamily: {
'montserrat': ['Montserrat', 'sans-serif']
},
extend: {
keyframes: {
reveal: {
'0%': { transform: 'translateY(100%) scale(50%)', opacity: '0%' },
'70%': { transform: 'translateY(-5%) scale(105%)', opacity: '100%' },
'100%': { transform: 'translateY(0%) scale(100%)', opacity: '100%' }
},
reveal2: {
'0%': { opacity: '0%' },
'100%': { opacity: '100%' }
},
reveal3: {
'0%': { transform: 'translateY(100%)', opacity: '0%' },
'100%': { transform: 'translateY(0%)', opacity: '100%' }
}
},
animation: {
reveal: 'reveal 0.8s forwards',
reveal2: 'reveal2 0.4s 0.8s forwards',
reveal3: 'reveal3 0.8s forwards'
}
}
}
};