Logo correction

This commit is contained in:
mattyl006 2022-11-18 15:54:56 +01:00
parent 9302594002
commit e9f7fbee40
2 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ const desktopRender = () => {
<H1 as="h1">
Welcome to
<Container display="inline" color={theme.colors.green}>
&nbsp;Gonito.net!
&nbsp;Gonito!
</Container>
</H1>
<FlexRow gap='20px'>
@ -52,7 +52,7 @@ const desktopRender = () => {
Join us!
</ButtonLink>
</Container>
<Svg src={codepenIco} width='212px' height='180px' backgroundColor={theme.colors.green}/>
<Svg src={codepenIco} width='180px' height='150px' size='contain' backgroundColor={theme.colors.green}/>
</FlexRow>
</FlexColumn>
);

View File

@ -16,7 +16,7 @@ const LogoStyle = styled(H1)`
const Logo = () => {
return (
<LogoStyle as={Link} cursor='pointer' to='/' color={theme.colors.green}>
Gonito.net
Gonito
</LogoStyle>
);
};