-
Notifications
You must be signed in to change notification settings - Fork 24
/
tailwind.config.js
50 lines (50 loc) · 1008 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
content: ["./src/**/*.tsx"],
plugins: [
require("daisyui")
],
safelist: [
{
pattern: /(badge|border)-(info|warning|secondary|neutral|success)/,
}
],
daisyui: {
themes: [
{
winter: {
...require("daisyui/src/theming/themes").winter,
primary: "#1D4ED8"
}
},
{
dark: {
...require("daisyui/src/theming/themes").night,
primary: "#1D4ED8"
}
}
],
},
theme: {
extend: {
keyframes: {
drillDown: {
'0%': {
transform: 'translateY(-20px) scale(0.95)',
opacity: '0',
zIndex: '0'
},
'100%': {
transform: 'translateY(0) scale(1)',
opacity: '1',
zIndex: '10'
}
}
},
animation: {
'drill-down': 'drillDown 0.5s ease-in-out forwards'
}
}
}
}