Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add a margin to left side nav #3563

Merged
merged 3 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.193.7](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.193.5...v1.193.7) (2024-09-27)

### Bug Fixes

- add a margin to left side nav ([d504b23](https://github.com/bcgov/CONN-CCBC-portal/commit/d504b23b3722e2d793dc47055eee3bd2fe4ef112))
- cbc edit input focus issue ([ce13c6c](https://github.com/bcgov/CONN-CCBC-portal/commit/ce13c6c0085e7021dfe2ecb2d6b7ceff4567ab4a))

## [1.193.6](https://github.com/bcgov/CONN-CCBC-portal/compare/v1.193.5...v1.193.6) (2024-09-26)

### Bug Fixes
Expand Down
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
1 change: 1 addition & 0 deletions db/sqitch.plan
Original file line number Diff line number Diff line change
Expand Up @@ -684,3 +684,4 @@ computed_columns/cbc_history 2024-09-03T15:16:07Z Anthony Bushara <anthony@butto
@1.193.4 2024-09-26T20:12:39Z CCBC Service Account <ccbc@button.is> # release v1.193.4
@1.193.5 2024-09-26T20:14:22Z CCBC Service Account <ccbc@button.is> # release v1.193.5
@1.193.6 2024-09-26T21:30:05Z CCBC Service Account <ccbc@button.is> # release v1.193.6
@1.193.7 2024-09-27T17:07:14Z CCBC Service Account <ccbc@button.is> # release v1.193.7
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CONN-CCBC-portal",
"version": "1.193.6",
"version": "1.193.7",
"main": "index.js",
"repository": "https://github.com/bcgov/CONN-CCBC-portal.git",
"author": "Romer, Meherzad CITZ:EX <Meherzad.Romer@gov.bc.ca>",
Expand Down
Loading