fix sticky header z-index

This commit is contained in:
henrygd
2025-09-24 17:07:38 -04:00
parent 63bdac83a1
commit f70c30345a
3 changed files with 3 additions and 6 deletions

View File

@@ -280,10 +280,7 @@ export default function SystemsTableColumns(viewMode: "table" | "grid"): ColumnD
return (
<Link
href={getPagePath($router, "system", { name: system.name })}
className={cn(
"flex gap-1.5 items-center md:pe-5 tabular-nums relative z-30",
viewMode === "table" && "ps-0.5"
)}
className={cn("flex gap-1.5 items-center md:pe-5 tabular-nums relative", viewMode === "table" && "ps-0.5")}
tabIndex={-1}
title={connectionTypeLabels[system.info.ct as ConnectionType]}
role="none"