diff --git a/frontend/components/Layout/components/SidebarLink.js b/frontend/components/Layout/components/SidebarLink.js index 36dd2d0d7..b10bf94be 100644 --- a/frontend/components/Layout/components/SidebarLink.js +++ b/frontend/components/Layout/components/SidebarLink.js @@ -42,7 +42,7 @@ function SidebarLink(props: Object) { {props.hasChildren && } -
{props.children}
+ {props.children}
); @@ -62,4 +62,8 @@ const StyledChevron = styled(ChevronIcon)` } `; +const Content = styled.div` + width: 100%; +`; + export default SidebarLink;