Skip to content

Commit

Permalink
fix: swap margin
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdt committed Sep 25, 2021
1 parent c77d255 commit 18cfae8
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,9 @@ const Downgrade = () => {
)
return (
<div>
<Style>RDM Balance - {parseFloat(redeemTokenBalance)}</Style>
<Style>
<span>RDM Balance</span> {parseFloat(redeemTokenBalance)}
</Style>
{isRDMApproved() ? (
<>
<Button
Expand Down Expand Up @@ -355,5 +357,9 @@ const Downgrade = () => {

const Style = styled.div`
color: white;
display: flex;
flex-direction: row;
justify-content: space-between;
margin-bottom: 1em;
`
export default Downgrade

0 comments on commit 18cfae8

Please sign in to comment.