-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (35 loc) · 799 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (35 loc) · 799 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
34
35
36
import defaultTheme from 'tailwindcss/defaultTheme'
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
inter: ['Inter', ...defaultTheme.fontFamily.sans],
},
width: {
'fill': '-webkit-fill-available',
},
animation: {
progress: 'progress 4s linear forwards',
},
keyframes: {
progress: {
'0%': { width: '0%' },
'100%': { width: '100%' },
},
},
screens: {
'max-xs': { max: '580px' },
'max-lg': { max: '1080px' },
'min-1080': '1080px',
'xl-desktop': { min: '1440px' },
'uhd-2k': { min: '2560px' },
'uhd-8k': { min: '7680px' }
},
},
},
plugins: [],
}