Browse Source

Remove root dir reference (#32)

Change root reference to current directory. Fixes issue self hosting outside of root dir.
pull/39/head
nomore1007 4 years ago
committed by GitHub
parent
commit
d2b1d4b537
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/components/layout/Header.tsx

4
src/components/layout/Header.tsx

@ -55,12 +55,12 @@ export const Header = (): JSX.Element => {
width={majorScale(12)} width={majorScale(12)}
marginRight={majorScale(22)} marginRight={majorScale(22)}
> >
<Link href="/"> <Link href=".">
<Pane <Pane
is="img" is="img"
width={100} width={100}
height={28} height={28}
src="/Logo_Black.svg" src="Logo_Black.svg"
cursor="pointer" cursor="pointer"
/> />
</Link> </Link>

Loading…
Cancel
Save