Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
martines3000 committed Jan 15, 2025
1 parent 5cc08c8 commit e91950e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/frontend/src/components/NetBorrowTooltip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type NetBorrowTooltipProps = {

export const NetBorrowTooltip = ({ aprData }: NetBorrowTooltipProps) => {
return (
<div className="min-w-[200px] p-2">
<div className="min-w-[200px] max-w-[300px] py-2 px-4">
<div className="flex justify-center font-semibold text-white text-lg">
Net Borrow APY
</div>
Expand All @@ -38,7 +38,7 @@ export const NetBorrowTooltip = ({ aprData }: NetBorrowTooltipProps) => {
<div>Net Borrow APY</div>
<div>{aprData?.netBorrowApr.times(100).toFixed(2)}%</div>
</div>
<div className="text-xs italic text-moon">
<div className="mt-1 text-center text-xs italic text-moon">
A negative Net Borrow APY means you are earning interest on your
borrowed funds.
</div>
Expand Down

0 comments on commit e91950e

Please sign in to comment.