diff --git a/packages/core/src/Table/TableRow.tsx b/packages/core/src/Table/TableRow.tsx index efe05e68..669c8fd3 100644 --- a/packages/core/src/Table/TableRow.tsx +++ b/packages/core/src/Table/TableRow.tsx @@ -60,6 +60,11 @@ const TableRowGrid = styled.div<{ } } + &:focus-within { + box-shadow: ${({ theme }) => theme.shadow.tableRow}; + z-index: 1; + } + &.selected { background-color: ${({ theme }) => theme.color.backgroundPrimary()}; }