Skip to content

Commit

Permalink
Merge pull request #1898 from Shoaibdev7/Make-the-tool-tip-scrollable
Browse files Browse the repository at this point in the history
Fixed(Graph-Tooltip): Make the tool tip scrollable
  • Loading branch information
Rassl authored Jul 23, 2024
2 parents 5908ff6 + eb010ed commit 3789b20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ const Wrapper = styled(Flex)(({ theme }) => ({
top: '65px',
right: '55px',
width: '300px',
pointerEvents: 'none',
pointerEvents: 'auto',
background: colors.dashboardHeader,
boxShadow: '0px 1px 6px rgba(0, 0, 0, 0.1)',
color: colors.primaryText1,
zIndex: 100,
maxHeight: '400px',
overflowY: 'auto',
transition: 'opacity 0.6s',
padding: theme.spacing(2, 3),
[theme.breakpoints.down('sm')]: {
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 3789b20

Please sign in to comment.