Skip to content

Commit

Permalink
Reduce spacing in WelcomeModal for small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
kkosiorowska committed Nov 21, 2024
1 parent e94d20f commit 1a64cb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dapp/src/components/WelcomeModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function WelcomeModalBase({ closeModal }: BaseModalProps) {
<SimpleGrid columns={2} templateColumns="1fr auto">
<Box>
<ModalHeader gap={3} pb={8}>
<TextSm mb="12" color="neutral.70">
<TextSm mb={{ base: 4, md: 12 }} color="neutral.70">
Welcome to Acre,
</TextSm>
{activeStepData.title}
Expand All @@ -143,7 +143,7 @@ function WelcomeModalBase({ closeModal }: BaseModalProps) {
display="flex"
flexDirection="row"
justifyContent="space-between"
mt="14"
mt={{ base: 0, md: 14 }}
>
<Stepper index={activeStep} gap="3">
{steps.map((step) => (
Expand Down

0 comments on commit 1a64cb7

Please sign in to comment.