Skip to content

Commit

Permalink
fix: Tweak asset paddings.
Browse files Browse the repository at this point in the history
  • Loading branch information
kovipu committed Feb 7, 2025
1 parent 24bfc72 commit 677eea3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/_borrow/BorrowableAsset.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const BorrowableAsset = ({ currency, onBorrowClicked }: BorrowableAssetCa
</p>
</td>

<td>
<td className="pr-0">
{borrowDisabled ? (
<div className="tooltip" data-tip={tooltip}>
<Button disabled={true} onClick={() => {}}>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/_lend/LendableAsset.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const LendableAsset = ({ currency, onDepositClicked }: LendableAssetProps
</td>

<td>
<p className="text-xl font-semibold leading-6">
<p className="text-xl font-semibold mt-3 leading-6">
{pool ? formatAmount(pool.totalBalanceTokens) : <Loading size="xs" />}
</p>
<p>{!isNil(price) && !isNil(pool) && toDollarsFormatted(price, pool.totalBalanceTokens)}</p>
Expand Down

0 comments on commit 677eea3

Please sign in to comment.