Skip to content

Commit

Permalink
fix: price impact padding
Browse files Browse the repository at this point in the history
  • Loading branch information
0xApotheosis committed Aug 16, 2023
1 parent 3b5df75 commit 1800acd
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -484,9 +484,11 @@ export const TradeConfirm = () => {
</Box>
</Row>
)}
{isModeratePriceImpact && (
<PriceImpact impactPercentage={bn(priceImpactPercentage).toFixed(2)} />
)}
<Row px={4}>
{isModeratePriceImpact && (
<PriceImpact impactPercentage={bn(priceImpactPercentage).toFixed(2)} />
)}
</Row>
<Row px={4}>
<HelperTooltip label={translate('trade.tooltip.rate')}>
<Row.Label>
Expand Down

0 comments on commit 1800acd

Please sign in to comment.