Skip to content

Commit

Permalink
Merge pull request #2 from fuseio/musab/feat/reduce-spaces
Browse files Browse the repository at this point in the history
Reduce spaces
  • Loading branch information
MusabShakeel576 authored Dec 1, 2024
2 parents a6aca53 + 05385ef commit bb5fc81
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/Menu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export default function Sidebar() {
>
<Flex justifyContent={'space-between'} px={3} height={'100%'} mx="auto" alignItems={'center'} as="nav">
<a href="https://www.fuse.io">
<Image width={125} src={FuseLogo} />
<Image width={90} src={FuseLogo} alt="Fuse" />
</a>
<Web3Status />
</Flex>
Expand Down
11 changes: 6 additions & 5 deletions src/pages/Bridge/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -288,19 +288,17 @@ export default function Bridge() {
sx={{
backgroundImage: ['none', `url('/images/landing/hero-background.svg')`],
backgroundSize: 'contain',
backgroundPosition: 'top 0 right -20vw',
backgroundPosition: 'top 0 right -5vw',
backgroundRepeat: 'no-repeat',
minHeight: ['auto', '900px'],
}}
as="section"
>
<Menu />
<MobileNav />
<Flex
px={3}
py={4}
py={5}
sx={{
minHeight: ['auto', 'calc(900px - 80px)'],
alignItems: 'center',
justifyContent: 'flex-start',
}}
Expand All @@ -324,13 +322,16 @@ export default function Bridge() {
<Button
variant='blackPrimary'
px={4}
onClick={() => {
window.open("https://medium.com/@voltage.finance/voltage-bridge-final-sunsetting-heres-what-you-need-to-know-73471ebedd7a", '_blank')
}}
>
Learn More
</Button>
</Flex>
</Flex>
</Box>
<AppBody pb={6} isFooter={false}>
<AppBody pb={4} isFooter={false}>
<UnsupportedBridgeTokenModal isOpen={modalOpen} setIsOpen={setModalOpen} />
<BridgeInfoModal open={feeModalOpen} setOpen={setFeeModalOpen} />

Expand Down

0 comments on commit bb5fc81

Please sign in to comment.