arthas/web-ui/arthasWebConsole/tailwind.config.js
2022-11-04 10:40:51 +08:00

24 lines
459 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"all/**/*.{vue,ts,css}",
],
theme: {
extend: {
keyframes: {
},
animation: {
'spin-rev-pause':'0.3s linear 0s infinite reverse both pause spin',
'spin-rev-running':'0.3s linear 0s infinite reverse both running spin'
},
},
daisyui: {
themes: ["corporate"],
},
},
plugins: [
require("daisyui")
],
}