Skip to content

Commit

Permalink
fix: move banner up
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsimao committed Jan 24, 2025
1 parent d18cae0 commit 73ce1c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/evm/src/app/[lang]/(bridge)/bridge/Bridge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@ const Bridge = ({ searchParams }: Props) => {

return (
<Main maxWidth='lg' padding='md'>
<Flex justifyContent='center' style={{ width: '100%' }}>
<BannerCarousel hasImgOpacity />
<Flex justifyContent='center' marginTop='2xl' style={{ width: '100%' }}>
<Flex direction='column' gap='md' style={{ width: '100%' }}>
<Flex justifyContent='flex-end'>
<Button size='s' style={{ gap: 4, alignItems: 'center' }} onPress={handleActivity}>
Expand Down Expand Up @@ -241,7 +242,6 @@ const Bridge = ({ searchParams }: Props) => {
</StyledCard>
</Flex>
</Flex>
<BannerCarousel hasImgOpacity marginTop='2xl' />
</Main>
);
};
Expand Down

0 comments on commit 73ce1c5

Please sign in to comment.