-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (50 loc) · 1.3 KB
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {
colors: {
blackOverlay: "rgba(0, 0 ,0 ,0.7)",
blackLightOverlay: "rgba(0, 0, 0, 0.3)",
},
keyframes: {
"slide-in": {
"0%": {
"-webkit-transform": "translateX(-200px)",
transform: "translateX(-200px)",
},
"100%": {
"-webkit-transform": "translateX(0px)",
transform: "translateX(0px)",
},
},
"slide-fwd": {
"0%": {
"-webkit-transform": "translateZ(0px)",
transform: "translateZ(0px)",
},
"100%": {
"-webkit-transform": "translateZ(160px)",
transform: "translateZ(160px)",
},
},
},
animation: {
"slide-in": "slide-in 0.5s ease-out",
"slide-fwd":
" slide-fwd 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both",
},
height: {
fitScreen: "calc(100vh - 80px)",
fitWFooter: "calc(100vh - 146px)",
},
minHeight: {
fitWFooter: "calc(100vh - 146px)",
},
backgroundImage: {
loginBg: "url('../public/assets/bg-login.jpg')",
},
},
},
plugins: [],
};