Refactored locally

This commit is contained in:
krikorios
2025-06-08 22:26:43 +03:00
parent 8d26a47b46
commit 83ffdf860a
11 changed files with 89 additions and 43 deletions
+10 -2
View File
@@ -2,7 +2,12 @@ import type { Config } from "tailwindcss";
export default {
darkMode: ["class"],
content: ["./client/index.html", "./client/src/**/*.{js,jsx,ts,tsx}"],
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./client/index.html",
"./client/src/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
borderRadius: {
@@ -10,9 +15,13 @@ export default {
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
borderColor: {
DEFAULT: "hsl(var(--border))",
},
colors: {
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
border: "hsl(var(--border))",
card: {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
@@ -41,7 +50,6 @@ export default {
DEFAULT: "hsl(var(--destructive))",
foreground: "hsl(var(--destructive-foreground))",
},
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
chart: {