From 4970ab5616212b145c71fbf5cf0e45b4699d4e7f Mon Sep 17 00:00:00 2001 From: Alexey Pavlov Date: Sun, 31 May 2026 08:38:17 +0300 Subject: [PATCH] chore: remove globals.src.css duplicate --- app/globals.src.css | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 app/globals.src.css diff --git a/app/globals.src.css b/app/globals.src.css deleted file mode 100644 index 4ff20cb..0000000 --- a/app/globals.src.css +++ /dev/null @@ -1,42 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; - -@layer base { - html { - @apply bg-bg text-gray-100; - } - body { - @apply font-sans antialiased; - } - ::selection { - @apply bg-accent/30; - } -} - -@layer components { - .btn { - @apply inline-flex items-center justify-center gap-2 px-4 py-2 rounded-lg font-medium transition-colors disabled:opacity-50 disabled:cursor-not-allowed; - } - .btn-primary { - @apply btn bg-accent text-black hover:bg-accent2; - } - .btn-ghost { - @apply btn text-gray-300 hover:bg-surface2 hover:text-white; - } - .btn-danger { - @apply btn bg-red-600/10 text-red-400 hover:bg-red-600/20; - } - .card { - @apply bg-surface border border-border rounded-xl; - } - .input { - @apply w-full bg-surface2 border border-border rounded-lg px-3 py-2 text-gray-100 placeholder-gray-500 focus:outline-none focus:border-accent transition-colors; - } - .label { - @apply block text-sm font-medium text-gray-300 mb-1.5; - } - .hint { - @apply text-xs text-gray-500 mt-1; - } -}