Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
refactor: remove needless wrapper in item component in process sectio…
Browse files Browse the repository at this point in the history
…n, change justifyContent prop in social box in hero section
  • Loading branch information
Mirved64 committed Aug 13, 2023
1 parent ec85d39 commit 2b9b944
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion landing/fragments/landing-hero/src/hero.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export const Hero = () => {

<Condition match={isDesktop}>
<Box alignItems='end'>
<Column height='200px' justifyContent='space-around'>
<Column height='200px' justifyContent='space-between'>
<Box>
<Link href='https://web.telegram.org/'>
<Button
Expand Down
8 changes: 3 additions & 5 deletions landing/fragments/landing-process/src/item/item.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,11 @@ export const Item: FC<ItemProps> = ({
</Row>

<Condition match={divider}>
<Column>
<Layout flexBasis={[28, 48]} />
<Layout flexBasis={[28, 48]} />

<Divider backgroundColor='divider.ghost' weight={weight} />
<Divider backgroundColor='divider.ghost' weight={weight} />

<Layout flexBasis={[28, 48]} />
</Column>
<Layout flexBasis={[28, 48]} />
</Condition>
</Column>
)

0 comments on commit 2b9b944

Please sign in to comment.