Merge pull request #13027 from kialam/fix-topology-css-overflow

Fix CSS overflow for legend and tooltip in Topology view.
This commit is contained in:
kialam
2022-10-10 14:04:06 -07:00
committed by GitHub
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)`