Compare commits

...
Author SHA1 Message Date
bosiraphael 622a936a3a fix cursor on settings table 2026-03-31 11:07:03 +02:00
@@ -21,7 +21,8 @@ const StyledTableRow = styled.div<{
? themeCssVariables.background.transparent.light
: 'transparent'};
border-radius: ${themeCssVariables.border.radius.sm};
cursor: ${({ cursor }) => cursor ?? 'default'};
cursor: ${({ cursor, onClick, to }) =>
cursor ?? (onClick || to ? 'pointer' : 'default')};
display: grid;
grid-auto-columns: ${({ gridAutoColumns }) => gridAutoColumns ?? '1fr'};
grid-auto-flow: column;