Skip to content

Commit

Permalink
Fix wrong custom color for table header background
Browse files Browse the repository at this point in the history
  • Loading branch information
OLILHR committed Feb 6, 2025
1 parent 01579b9 commit 56dcd4a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/lib/components/features/calendar-table.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@
{:else}
<div class="overflow-auto flex-1 min-h-0 scrollbar-hide">
<table class="w-full text-left">
<thead class="text-sm bg-secondary uppercase sticky top-0 z-10">
<thead
class="text-sm bg-fristenkalender_secondary uppercase sticky top-0 z-10"
>
<tr class="text-black/50">
<th
class="pb-4 font-normal relative before:absolute before:bottom-0 before:left-0 before:right-0 before:h-0.5 before:bg-fristenkalender_secondary"
Expand All @@ -149,7 +151,7 @@
<tbody>
{#each entries as entry}
<tr
class="font-medium border-b border-fristenkalender_primary/65 text-black/70"
class="font-base border-b border-fristenkalender_primary/65 text-black/70"
>
<td class="py-4 whitespace-nowrap">{entry.date}</td>
<td class="py-4 whitespace-nowrap"
Expand Down

0 comments on commit 56dcd4a

Please sign in to comment.