Skip to content

Commit

Permalink
fix(suite): align promo buttons to the right
Browse files Browse the repository at this point in the history
  • Loading branch information
MiroslavProchazka committed Nov 26, 2024
1 parent fb0a013 commit 72a2df4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/suite/src/views/dashboard/PromoBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ const DesktopPromoContainer = styled.div`

const MobilePromoContainer = styled.div`
${promoContainerCss}
justify-content: start;
margin: ${spacingsPx.sm} ${spacingsPx.xxxl} auto auto;
padding-bottom: ${spacingsPx.sm};
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
${variables.SCREEN_QUERY.MOBILE} {
flex-direction: column;
gap: 0;
gap: ${spacingsPx.sm};
padding: 20px 16px;
justify-content: space-between;
}
`;

Expand Down

0 comments on commit 72a2df4

Please sign in to comment.