This commit is contained in:
xds
2026-02-04 14:43:22 +03:00
commit 4f460b2876
40 changed files with 11425 additions and 0 deletions

19
tailwind.config.js Normal file
View File

@@ -0,0 +1,19 @@
// tailwind.config.js
export default {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
safelist: [
"!bg-slate-900/50",
"!bg-transparent",
"!bg-white/10",
"!bg-violet-600",
"!text-white",
"!text-slate-500",
"!text-slate-300",
"!text-slate-600",
"!border",
"!border-white/10",
"!border-none",
"!rounded-xl",
"!rounded-lg",
],
}