Skip to content

Commit e4548b2

Browse files
authored
Merge pull request #242 from saitama-on/main
logo&navbar alignment fix
2 parents 525919a + 3a30bbb commit e4548b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/Header/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const Header = React.forwardRef<HTMLDivElement, Props>(({ }: Props, ref) => {
2020
<Container maxWidth="xl" disableGutters>
2121
<Stack height="264px">
2222
<HeaderTop />
23-
<Stack gap="19px" ref={ref}>
23+
<Stack gap="19px" alignItems="center" ref={ref}>
2424
<SacBranding height={125} />
2525
<Typography alignSelf="center">Since 2018</Typography>
2626
</Stack>

components/NavBar/NavBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function NavBar({ }: Props) {
2525
const { inView: headInView } = useContext(BrandInViewContext);
2626
return (
2727
<StyledHeader justifyContent="center">
28-
<Container maxWidth="xl">
28+
<Container>
2929
<Stack
3030
direction="row"
3131
alignItems="center"

0 commit comments

Comments
 (0)