Skip to content

Commit

Permalink
style: fix Hero spacings
Browse files Browse the repository at this point in the history
  • Loading branch information
DiogoSoaress committed Nov 7, 2024
1 parent f41112e commit aa03804
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/components/Wallet/Hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ const Hero = ({

<Typography className={css.text}>{text}</Typography>

<ButtonsWrapper buttons={buttons} />
<div className={css.buttonsWrapper}>
<ButtonsWrapper buttons={buttons} />
</div>
</div>
</Container>

Expand Down
9 changes: 8 additions & 1 deletion src/components/Wallet/Hero/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
display: flex;
flex-direction: column;
align-items: center;
gap: 48px;
}

.caption {
Expand All @@ -36,6 +35,14 @@
color: var(--mui-palette-primary-text);
}

.text {
margin-top: 24px;
}

.buttonsWrapper {
margin-top: 40px;
}

.logosWrapper {
margin-top: 24px;
display: flex;
Expand Down

0 comments on commit aa03804

Please sign in to comment.