L-Nafaryus
e3b05ea5e2
All checks were successful
nix-build-publish / check (push) Successful in 9m9s
fix(frontend): tailwind config ES Module support error
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{vue,ts,js}"],
|
|
theme: {
|
|
extend: {
|
|
keyframes: {
|
|
"border-spin": {
|
|
"100%": {
|
|
transform: "rotate(-360deg)",
|
|
}
|
|
},
|
|
"border-roll": {
|
|
"100%": {
|
|
"background-position": "200% 0",
|
|
}
|
|
},
|
|
"spin": {
|
|
"from": {
|
|
"transform": "rotate(0deg)",
|
|
},
|
|
"to": {
|
|
"transform": "rotate(360deg)",
|
|
}
|
|
}
|
|
},
|
|
animation: {
|
|
"border-spin": "border-spin 7s linear infinite",
|
|
"border-roll": "border-roll 5s linear infinite",
|
|
"spin-slow": "spin 2s linear infinite",
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
require("@catppuccin/tailwindcss")({
|
|
prefix: "ctp",
|
|
defaultFlavour: "macchiato"
|
|
})
|
|
],
|
|
}
|
|
|
|
|