From 832a7abaf6a18f10357c4bdd9e47abb8eee5cb5d Mon Sep 17 00:00:00 2001 From: Jori Lallo Date: Sun, 15 Oct 2017 22:15:15 -0700 Subject: [PATCH] Fixed sidebar link issue --- frontend/components/Layout/components/SidebarLink.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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;