diff --git a/frontend/src/components/navigation/org.js b/frontend/src/components/navigation/org.js index 81611cdd..8da19eb8 100644 --- a/frontend/src/components/navigation/org.js +++ b/frontend/src/components/navigation/org.js @@ -53,6 +53,7 @@ const OrgName = styled.span` const NavLi = styled(NavLink)` display: inline-block; text-decoration: none; + font-size: 16px; `; const StyledTabs = styled(Tabs)` @@ -73,6 +74,13 @@ const StyledContainer = styled(Container)` `} `; +const ManageTab = styled(Tab)` + + ${breakpoints.medium` + float: right; + `} +`; + const OrgNavigation = ({ orgs = [] }) => { @@ -107,11 +115,38 @@ const OrgNavigation = ({ ); }); + const manageTabs = () => ( + {({ + isActive + }) => + + + Manage Tabs ({orgs.length}) + + + } + ); + + const addOrgTab = () => ( + {({ + isActive + }) => + + + +   Add organisation + + + } + ); + return ( {navLinks} + + +