Fix CSS overflow for legend and tooltip in Topology view.

This commit is contained in:
Kia Lam 2022-10-04 13:59:01 -07:00
parent 6f741b909a
commit 2e38bbcbcd
2 changed files with 3 additions and 3 deletions

View File

@ -26,9 +26,9 @@ const Wrapper = styled.div`
position: absolute;
left: 0;
padding: 0 10px;
width: 150px;
min-width: 150px;
background-color: rgba(255, 255, 255, 0.85);
overflow: scroll;
overflow: auto;
height: 100%;
`;
const Button = styled(PFButton)`

View File

@ -37,7 +37,7 @@ const Wrapper = styled.div`
padding: 0 10px;
width: 25%;
background-color: rgba(255, 255, 255, 0.85);
overflow: scroll;
overflow: auto;
height: 100%;
`;
const Button = styled(PFButton)`