fix: Remove upward box-shadow on ReviewHeader that covers tab bar

The sticky ReviewHeader had shadow-[0_-50px_0_0_hsl(var(--background))]
which painted a 50px background-color rectangle upward, overlapping the
tab navigation bar (only ~12px away). The header's bg-card is already
opaque, making the shadow unnecessary for scroll coverage.
This commit is contained in:
Lukas May
2026-03-06 12:18:31 +01:00
parent 17f92040c7
commit a69527b7d6

View File

@@ -97,7 +97,7 @@ export function ReviewHeader({
const total = totalCount ?? 0;
return (
<div ref={ref} className="border-b border-border bg-card backdrop-blur-sm sticky top-0 z-20 rounded-t-lg shadow-[0_-50px_0_0_hsl(var(--background))]">
<div ref={ref} className="border-b border-border bg-card backdrop-blur-sm sticky top-0 z-20 rounded-t-lg">
{/* Phase selector row */}
{phases.length > 1 && (
<div className="flex items-center gap-1 px-4 pt-3 pb-2 border-b border-border/50">