mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-03 13:06:41 +00:00
fix(ui): scroll on the domain sidebar to show all domains (#10966)
This commit is contained in:
parent
ebe687bbc5
commit
c5d3153e83
@ -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 }) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user