Skip to content

Commit

Permalink
fix: add a margin to left side nav
Browse files Browse the repository at this point in the history
  • Loading branch information
RRanath authored and ccbc-service-account committed Sep 26, 2024
1 parent 395a104 commit 23a9ba7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions app/components/Analyst/NavigationSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ const StyledUpperSection = styled.section`
color: ${(props) => props.theme.color.navigationBlue};
`;

const StyledLowerSection = styled.section`
margin-top: 1em;
`;

const NavigationSidebar = () => {
const router = useRouter();
const { asPath } = router;
Expand All @@ -47,7 +51,7 @@ const NavigationSidebar = () => {
label="Dashboard"
/>
</StyledUpperSection>
<section>
<StyledLowerSection>
<NavItem
currentPath={asPath}
href={`/analyst/application/${applicationId}/summary`}
Expand Down Expand Up @@ -84,7 +88,7 @@ const NavigationSidebar = () => {
icon={faClockRotateLeft}
label="History"
/>
</section>
</StyledLowerSection>
</StyledNav>
</StyledAside>
);
Expand Down

0 comments on commit 23a9ba7

Please sign in to comment.