-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
35 lines (35 loc) · 957 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,ts,jsx,tsx}"],
theme: {
extend: {
keyframes: {
slideInRight: {
"0%": { transform: "translateX(100%)" },
"100%": { transform: "translateX(0%)" },
},
slideOutRight: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(100%)" },
},
},
animation: {
slideInRight: "slideInRight 0.5s ease-in-out forwards",
slideOutRight: "slideOutRight 0.5s ease-in-out forwards",
},
},
},
plugins: [
function ({ addUtilities }) {
addUtilities({
".scrollbar-hide": {
"-ms-overflow-style": "none" /* IE and Edge */,
"scrollbar-width": "none" /* Firefox */,
"&::-webkit-scrollbar": {
display: "none" /* Chrome, Safari, Opera */,
},
},
});
},
],
};