mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-29 05:49:11 +00:00
fix missing prop for HeaderCommon
This commit is contained in:
parent
abc5198862
commit
136e73d770
2 changed files with 2 additions and 1 deletions
|
@ -73,7 +73,7 @@ const StyledUserSection = styled(UserSection)`
|
||||||
`
|
`
|
||||||
|
|
||||||
const HeaderBarAuth: React.StatelessFunctionalComponent<{ user: User }> = ({ user }) => (
|
const HeaderBarAuth: React.StatelessFunctionalComponent<{ user: User }> = ({ user }) => (
|
||||||
<HeaderBarCommon>
|
<HeaderBarCommon noBackground={false}>
|
||||||
<>
|
<>
|
||||||
<Link href='/s/add' prefetch>
|
<Link href='/s/add' prefetch>
|
||||||
<LogoBox>
|
<LogoBox>
|
||||||
|
|
|
@ -17,6 +17,7 @@ const Header = styled.div`
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
|
z-index: 100;
|
||||||
`
|
`
|
||||||
|
|
||||||
const HeaderInner = styled.div`
|
const HeaderInner = styled.div`
|
||||||
|
|
Loading…
Add table
Reference in a new issue