-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (45 loc) · 972 Bytes
/
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
42
43
44
45
46
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/styles/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
height: {
'600px': '600px',
'450px': '450px',
'520px': '520px',
},
maxHeight: {
'90v': '90vh',
},
animation: {
slideIn: '1s ease-out 0s 1 slideIn',
},
width: {
'fit-content': 'fit-content',
},
minWidth: {
'10/4r': '2.5rem',
},
keyframes: {
slideIn: {
'0%': { transform: 'translateX(-30%)' },
'100%': { transform: 'translateX(0%)' },
},
},
borderRadius: {
'4xl': '50px',
},
screens: {
"xs": '400px',
},
},
},
plugins: [],
}