Skip to content

Commit

Permalink
fix(graph-tooltip): small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Shoaibdev7 committed Jul 23, 2024
1 parent 55ee1fd commit 17e399a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,18 @@ const Wrapper = styled(Flex)(({ theme }) => ({
top: '65px',
right: '55px',
width: '300px',
pointerEvents: 'auto',
pointerEvents: 'none',
background: colors.dashboardHeader,
boxShadow: '0px 1px 6px rgba(0, 0, 0, 0.1)',
color: colors.primaryText1,
zIndex: 100,
overflow: 'hidden',
maxHeight: '400px',
overflowY: 'auto',
transition: 'opacity 0.6s',
padding: theme.spacing(2, 3),
[theme.breakpoints.down('sm')]: {
padding: theme.spacing(1, 1.5),
},
'&:hover': {
overflow: 'auto',
},
}))

const Divider = styled(Flex)`
Expand Down
1 change: 1 addition & 0 deletions src/components/Universe/Overlay/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const OverlayWrap = styled('div')(({ theme }) => ({
height: '100%',
width: '100%',
padding: '16px',
overflow: 'hidden',
[theme.breakpoints.down('sm')]: {
top: 50,
},
Expand Down

0 comments on commit 17e399a

Please sign in to comment.