fix(ui): scroll on the domain sidebar to show all domains (#10966)

This commit is contained in:
Chris Collins 2024-07-23 04:14:50 -04:00 committed by GitHub
parent ebe687bbc5
commit c5d3153e83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 }) {