forked from KUSITMS-DEVOCEAN/THANKS_TO_FE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
56 lines (56 loc) · 988 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
47
48
49
50
51
52
53
54
55
56
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
keyframes: {
fadeout: {
'0%': {
opacity: 0,
transform: 'translate3d(0, 10px, 0)',
},
'100%': {
opacity: 1,
transform: 'translate3d(0, 0, 0)',
},
},
fadeInDown: {
'0%': {
opacity: '0',
transform: 'translate3d(0, -100%, 0)',
},
'100%': {
opacity: '1',
transform: 'translateZ(0)',
},
},
},
animation: {
fadeout: 'fadeout 1s',
fadeInDown: 'fadeInDown 1s ease-out forwards',
},
},
fontFamily: {
sktBold: ['SKTSansTTFBold'],
sktMedium: ['SKTSansTTFMedium'],
sktRegular: ['SKTSansTTFRegular'],
},
fontSize: {
lg: [
'24px',
{
lineHeight: '36px',
fontWeight: '700',
},
],
sm: [
'14px',
{
lineHeight: '21px',
fontWeight: '400',
},
],
},
},
plugins: [],
};