-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (33 loc) · 982 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (33 loc) · 982 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
visibility: ['parent'],
fontFamily: {
clash: ['Clash Display'],
work: ['Work Sans'],
},
fontSize: {
230: '230px',
'10xl': '9rem',
},
backgroundImage: {
'main-background': "url('./assets/images/bg.webp')",
},
height: {
'50vh': '50vh',
},
animation: {
'fade-in': 'fade-in 0.7s ease-in-out',
},
keyframes: {
'fade-in': {
from: { opacity: 0, filter: 'blur(5px)', transform: 'translateY(-30%)' },
to: { opacity: 1, filter: 'blur(0)', transform: 'translateY(0)' },
},
},
},
},
plugins: [],
}