-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
61 lines (61 loc) · 1.63 KB
/
tailwind.config.js
File metadata and controls
61 lines (61 loc) · 1.63 KB
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
57
58
59
60
61
/** @type {import('tailwindcss').Config} */
export const mode = 'jit';
export const content = ['./public/**/*.{html,js,php}', './src/Views/**/*.{html,php}'];
export const theme = {
extend: {
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
},
keyframes: {
slideIn: {
'0%': {
transform: 'translateX(-100%)',
},
'100%': {
transform: 'translateX(0)',
},
},
slideOut: {
'0%': {
transform: 'translateX(0)',
},
'100%': {
transform: 'translateX(-100%)',
},
},
toastSlideIn: {
'0%': {
transform: 'translateX(100%)',
},
'100%': {
transform: 'translateX(0)',
},
},
toastSlideOut: {
'0%': {
transform: 'translateX(0)',
},
'100%': {
transform: 'translateX(150%)',
},
},
'modal-open': {
'0%': { opacity: '0', transform: 'translateY(-20px) scale(0.95)' },
'100%': { opacity: '1', transform: 'translateY(0) scale(1)' },
},
'modal-close': {
'0%': { opacity: '1', transform: 'translateY(0) scale(1)' },
'100%': { opacity: '0', transform: 'translateY(-20px) scale(0.95)' },
},
},
animation: {
slideIn: 'slideIn 0.5s ease-in-out',
slideOut: 'slideOut 0.5s ease-in-out',
toastSlideIn: 'toastSlideIn 0.5s ease-in-out',
toastSlideOut: 'toastSlideOut 0.5s ease-in-out',
'modal-open': 'modal-open 0.3s ease-out forwards',
'modal-close': 'modal-close 0.3s ease-in forwards',
},
},
};
export const plugins = [];