Skip to content

Commit

Permalink
Disable focus outline around subtitle player on key input
Browse files Browse the repository at this point in the history
  • Loading branch information
killergerbah committed Jun 19, 2024
1 parent 4529ee3 commit 472ea71
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions common/app/components/SubtitlePlayer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ const useSubtitlePlayerStyles = makeStyles<Theme, StylesProps, string>((theme) =
overflowX: 'hidden',
backgroundColor: theme.palette.background.default,
width: ({ resizable }) => (resizable ? 'auto' : '100%'),
'&:focus': {
outline: 'none',
},
},
table: {
backgroundColor: theme.palette.background.default,
Expand Down

0 comments on commit 472ea71

Please sign in to comment.