chore: Hide sidebar section on empty

This commit is contained in:
Tom Moor
2024-01-28 21:51:43 -05:00
parent a7e519f026
commit 5d810ac02d

View File

@@ -11,6 +11,10 @@ const Section = styled(Flex)`
&:first-child {
margin-top: 20px;
}
&:empty {
display: none;
}
`;
export default Section;