[Bug] Fix system table in Safari (#1092)

Co-authored-by: henrygd <hank@henrygd.me>
This commit is contained in:
Sven van Ginkel
2025-08-28 18:07:27 +02:00
committed by GitHub
parent 059d2d0a5b
commit 50d2406423
2 changed files with 2 additions and 1 deletions

View File

@@ -292,7 +292,7 @@ const SystemTableRow = memo(
return ( return (
<TableRow <TableRow
// data-state={row.getIsSelected() && "selected"} // data-state={row.getIsSelected() && "selected"}
className={cn("cursor-pointer transition-opacity relative", { className={cn("cursor-pointer transition-opacity relative safari:transform-3d", {
"opacity-50": system.status === SystemStatus.Paused, "opacity-50": system.status === SystemStatus.Paused,
})} })}
> >

View File

@@ -2,6 +2,7 @@
@import "tw-animate-css"; @import "tw-animate-css";
@custom-variant dark (&:is(.dark *)); @custom-variant dark (&:is(.dark *));
@custom-variant safari (@supports (hanging-punctuation: first) and (-webkit-appearance: none));
:root { :root {
--background: hsl(30 8% 98%); --background: hsl(30 8% 98%);