Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions src/pages/stablecoins.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,15 @@ const InfoIcon = styled(Icon)`
fill: ${(props) => props.theme.colors.text};
`

const ButtonLinkRight = styled(ButtonLink)`
margin-left: 1rem;
const ButtonLinkWrap = styled(ButtonLink)`
white-space: break-spaces;
`

const ButtonLinkContainer = styled.div`
display: flex;
flex-direction: row;
flex-flow: wrap;
gap: 1em;
`

const tooltipContent = (
Expand Down Expand Up @@ -807,14 +814,14 @@ const StablecoinsPage = ({ data }) => {
intl
)}
>
<div>
<ButtonLinkContainer>
<ButtonLink to="/dapps/">
<Translation id="page-stablecoins-explore-dapps" />
</ButtonLink>
<ButtonLinkRight isSecondary to="/defi/">
<ButtonLinkWrap isSecondary to="/defi/">
<Translation id="page-stablecoins-more-defi-button" />
</ButtonLinkRight>
</div>
</ButtonLinkWrap>
</ButtonLinkContainer>
</StyledCalloutBanner>
<h2>
<Translation id="page-stablecoins-save-stablecoins" />
Expand Down