Skip to content

Commit

Permalink
fix: feedback button ui (#1772)
Browse files Browse the repository at this point in the history
  • Loading branch information
heisenberg-2077 authored Sep 22, 2023
1 parent ec55244 commit 4bb2bf1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const NoActionBody: React.FC<Props> = ({

return (
<>
<div className="h-[0.5px] bg-r-neutral-line w-full my-12" />
<div className="h-1 bg-[#000] bg-opacity-5 w-full my-12" />
<div className="leading-[16px]">
{isRequested ? (
<div className="text-r-neutral-foot">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,9 @@ const TokenDetail = ({
</div>
</TooltipWithMagnetArrow>
<TooltipWithMagnetArrow
title={(tokenWithAmount.amount * token.price || 0).toString()}
title={`≈ $${(
tokenWithAmount.amount * token.price || 0
).toString()}`}
className="rectangle w-[max-content]"
placement="bottom"
>
Expand Down

0 comments on commit 4bb2bf1

Please sign in to comment.