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"> <H1 as="h1">
Welcome to Welcome to
<Container display="inline" color={theme.colors.green}> <Container display="inline" color={theme.colors.green}>
&nbsp;Gonito.net! &nbsp;Gonito!
</Container> </Container>
</H1> </H1>
<FlexRow gap='20px'> <FlexRow gap='20px'>
@ -52,7 +52,7 @@ const desktopRender = () => {
Join us! Join us!
</ButtonLink> </ButtonLink>
</Container> </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> </FlexRow>
</FlexColumn> </FlexColumn>
); );

View File

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