Skip to content

Commit

Permalink
Merge pull request #1379 from bcgov/fix/daniel-change-header-padding-…
Browse files Browse the repository at this point in the history
…1334

fix: Change Header padding and sizing
  • Loading branch information
dhaselhan authored Dec 5, 2024
2 parents db5664f + 13bc3f6 commit 3f072d0
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function DefaultNavbarLink({
mb={isMobileView ? 0.2 : -1}
mr={isMobileView ? 2 : 1}
py={1}
px={2}
px={1}
display="flex"
alignItems="center"
sx={({ transitions, palette }) => ({
Expand All @@ -54,8 +54,7 @@ function DefaultNavbarLink({
backgroundColor: isMobileView
? 'rgba(0, 0, 0, 0.2)'
: 'rgba(0, 0, 0, 0.3)',
paddingBottom: isMobileView ? '11px' : '12px',
paddingLeft: isMobileView ? '13px' : 2
paddingBottom: isMobileView ? '11px' : '12px'
},
transform: 'translateX(0)',
transition: transitions.create('transform', {
Expand Down Expand Up @@ -87,7 +86,9 @@ function DefaultNavbarLink({
lineHeight: 0,
'&:hover': {
textDecoration: 'none'
}
},
whiteSpace: 'nowrap',
flexShrink: 0
}}
>
{name}
Expand Down
7 changes: 4 additions & 3 deletions frontend/src/components/BCNavbar/components/MenuBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,19 @@ const MenuBar = (props) => {
backdropFilter: `saturate(200%) blur(30px)`,
color: white.main,
maxHeight: '50px',
display: { xs: 'none', sm: 'flex' }
display: { xs: 'none', sm: 'flex' },
justifyContent: 'space-between'
})}
disableGutters
variant="dense"
>
<BCBox
sx={{
flexGrow: 1,
display: { xs: 'none', lg: 'flex' },
flexDirection: 'row',
margin: 0,
padding: 0
padding: 0,
marginLeft: 1
}}
>
{routes.map(
Expand Down
23 changes: 0 additions & 23 deletions frontend/src/components/Header.jsx

This file was deleted.

16 changes: 14 additions & 2 deletions frontend/src/layouts/MainLayout/components/Logout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,27 @@ export const Logout = () => {
<BCBox
display="flex"
alignItems="center"
justifyContent="space-around"
justifyContent="space-between"
mr={3}
>
{currentUser?.firstName && (
<BCTypography variant="subtitle1" color="light" mx={3}>
<BCTypography
style={{
whiteSpace: 'nowrap',
overflow: 'hidden',
textOverflow: 'ellipsis',
flexShrink: 1,
marginRight: '12px',
maxWidth: '17vw'
}}
variant="subtitle1"
color="light"
>
{currentUser?.firstName + ' ' + currentUser?.lastName}
</BCTypography>
)}
<BCButton
style={{ whiteSpace: 'nowrap', flexShrink: 0 }}
onClick={() => {
logout()
}}
Expand Down

0 comments on commit 3f072d0

Please sign in to comment.