Skip to content

Commit

Permalink
fix(graph-tooltip): fix eslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Shoaibdev7 committed Jul 23, 2024
1 parent 2e27908 commit 55ee1fd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ const Wrapper = styled(Flex)(({ theme }) => ({
top: '65px',
right: '55px',
width: '300px',
pointerEvents: 'auto', // Allow pointer events for scrolling
pointerEvents: 'auto',
background: colors.dashboardHeader,
boxShadow: '0px 1px 6px rgba(0, 0, 0, 0.1)',
color: colors.primaryText1,
zIndex: 100,
overflow: 'hidden', // Hide overflow by default
overflow: 'hidden',
transition: 'opacity 0.6s',
padding: theme.spacing(2, 3),
[theme.breakpoints.down('sm')]: {
padding: theme.spacing(1, 1.5),
},
'&:hover': {
overflow: 'auto', // Enable scrolling on hover
overflow: 'auto',
},
}))

Expand Down

0 comments on commit 55ee1fd

Please sign in to comment.