Skip to content

Commit

Permalink
fix(ui): scroll on the domain sidebar to show all domains (#10966)
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscollins3456 authored Jul 23, 2024
1 parent ebe687b commit c5d3153
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions datahub-web-react/src/app/shared/sidebar/components.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ export const SidebarWrapper = styled.div<{ width: number }>`
width: ${(props) => props.width}px;
min-width: ${(props) => props.width}px;
display: ${(props) => (props.width ? 'block' : 'none')};
display: flex;
flex-direction: column;
`;

export function RotatingTriangle({ isOpen, onClick }: { isOpen: boolean; onClick?: () => void }) {
Expand Down

0 comments on commit c5d3153

Please sign in to comment.