Skip to content

Commit

Permalink
feat: add hover effect (TexteaInc#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
xepozz authored Sep 23, 2022
1 parent 0a519c6 commit 6b50a01
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/DataKeyPair.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,12 @@ export const DataKeyPair: React.FC<DataKeyPairProps> = (props) => {
expandable
? (inspect
? <ExpandMoreIcon sx={{
fontSize: '.8rem'
fontSize: '.8rem',
'&:hover': {cursor: 'pointer'},
}}/>
: <ChevronRightIcon sx={{
fontSize: '.8rem'
fontSize: '.8rem',
'&:hover': {cursor: 'pointer'},
}}/>
)
: null
Expand Down

0 comments on commit 6b50a01

Please sign in to comment.