diff --git a/datahub-web-react/src/app/shared/sidebar/components.tsx b/datahub-web-react/src/app/shared/sidebar/components.tsx index c5e529bd3a91c8..1b53843ee992f2 100644 --- a/datahub-web-react/src/app/shared/sidebar/components.tsx +++ b/datahub-web-react/src/app/shared/sidebar/components.tsx @@ -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 }) {