arthas/web-ui/arthasWebConsole/tailwind.config.js

24 lines
459 B
JavaScript
Raw Normal View History

2022-10-10 22:54:30 +08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"all/**/*.{vue,ts,css}",
2022-10-10 22:54:30 +08:00
],
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")
],
}