mirror of
https://gitee.com/arthas/arthas.git
synced 2024-12-04 13:17:59 +08:00
24 lines
459 B
JavaScript
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")
|
|
],
|
|
}
|