From b550a606f567410f0eba411e5643d55f293dc14c Mon Sep 17 00:00:00 2001 From: Nils Pukropp Date: Fri, 27 Mar 2026 11:54:23 +0100 Subject: [PATCH] fixed undeclared error --- frontend/src/styles/global.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/styles/global.css b/frontend/src/styles/global.css index 43e8823..056e0bc 100644 --- a/frontend/src/styles/global.css +++ b/frontend/src/styles/global.css @@ -117,7 +117,7 @@ body { /* Professional Table Styles */ .prose table { @apply w-full mb-8 border-collapse overflow-hidden rounded-xl; border: 1px solid var(--surface1); } .prose thead { @apply bg-surface0/50; } -.prose th { @apply px-4 py-3 text-left font-bold text-sm md:text-base; border-b border-surface1; color: var(--mauve) !important; } +.prose th { @apply px-4 py-3 text-left font-bold text-sm md:text-base border-b border-surface1; color: var(--mauve) !important; } .prose td { @apply px-4 py-2 border-b border-surface1 text-sm md:text-base; color: var(--text) !important; } .prose tr:last-child td { @apply border-b-0; } .prose tr:nth-child(even) { @apply bg-surface0/20; }