Skip to content

Commit

Permalink
fixed desktop logo styling
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlee348 committed Dec 3, 2024
1 parent f24911d commit 6a7f644
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/routes/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,15 @@ export default function Landing() {
gap="10"
zIndex="20"
>
<Box flexDirection="column" justifyContent="center" alignItems={isMobile ? 'center' : 'flex-start'}>
<Image src={SequenceRecoveryLogo} height="8" paddingX="4" />
<Box flexDirection="column" justifyContent="center" alignItems={isMobile ? 'center' : 'flex-start'} gap={isMobile ? undefined : "6"}>
<Image src={SequenceRecoveryLogo} height="8" />

{isMobile && <Image src={bgImageMobile} style={{ maxWidth: 'calc(100% + 32px)' }} />}

<Text
textAlign={isMobile ? 'center' : 'left'}
variant="xlarge"
color="text100"
paddingX="4"
style={
isMobile ? { fontSize: '28px', lineHeight: '32px' } : { fontSize: '40px', lineHeight: '44px' }
}
Expand Down

0 comments on commit 6a7f644

Please sign in to comment.