mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-26 23:51:14 +02:00
fix(output-viewer): update table header background color to improve UI consistency
This commit is contained in:
parent
0c04e990be
commit
b6cf403213
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ function ResultTable({ items }: { items: Record<string, unknown>[] }) {
|
|||
return (
|
||||
<div className="max-h-[480px] overflow-auto overscroll-contain rounded-md border border-border/60">
|
||||
<table className="w-full caption-bottom text-sm">
|
||||
<TableHeader className="sticky top-0 z-10 bg-background">
|
||||
<TableHeader className="sticky top-0 z-10 bg-muted">
|
||||
<TableRow>
|
||||
{columns.map((col) => (
|
||||
<TableHead key={col} className="whitespace-nowrap">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue