Skip to content

Commit c159f89

Browse files
authored
fix: footer displaying with inverted colors (#1419)
1 parent c6c120f commit c159f89

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sites/docs/src/lib/registry/default/ui/table/table-footer.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
export { className as class };
99
</script>
1010

11-
<tfoot class={cn("bg-primary text-primary-foreground font-medium", className)} {...$$restProps}>
11+
<tfoot class={cn("bg-muted/50 text-primary-foreground font-medium", className)} {...$$restProps}>
1212
<slot />
1313
</tfoot>

sites/docs/src/lib/registry/new-york/ui/table/table-footer.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
export { className as class };
99
</script>
1010

11-
<tfoot class={cn("bg-primary text-primary-foreground font-medium", className)} {...$$restProps}>
11+
<tfoot class={cn("bg-muted/50 text-primary-foreground font-medium", className)} {...$$restProps}>
1212
<slot />
1313
</tfoot>

0 commit comments

Comments
 (0)