Skip to content

Commit

Permalink
fix(table): post review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hebernardEquisoft committed Jul 15, 2024
1 parent 829e809 commit 84fa5bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/react/src/components/table/table-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const SortButton = styled.button<{ $textAlign: string }>`
font: inherit;
text-align: ${({ $textAlign }) => $textAlign};
${focus}
${({ theme }) => focus({ theme }, { focusType: 'focus-visible', insideOnly: true })};
`;

interface StyledHeaderProps {
Expand Down
6 changes: 3 additions & 3 deletions packages/react/src/components/table/table.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -1970,9 +1970,9 @@ exports[`Table has sorting styles 1`] = `
outline-offset: -2px;
}
.c4:focus {
box-shadow: 0 0 0 2px #006296;
outline: 2px solid #84C6EA;
.c4:focus-visible {
box-shadow: 0 0 0 0 transparent;
outline: 2px solid #006296;
outline-offset: -2px;
}
Expand Down

0 comments on commit 84fa5bc

Please sign in to comment.