Skip to content
This repository has been archived by the owner on Apr 11, 2022. It is now read-only.

Commit

Permalink
move tooltip to right, broken if no unlocking
Browse files Browse the repository at this point in the history
  • Loading branch information
hstove committed Nov 8, 2019
1 parent d255890 commit 3e5c5ea
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions containers/cards/stacks-address.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,14 @@ const StacksAddressCard = ({
<Box width={1 / 2}>
{status && (
<>
<Section.Subsection label="Sent" tooltip="Total Stacks sent from this address">
<Section.Subsection label="Sent" tooltip="Total Stacks sent from this address" tooltipPosition="right">
<Type fontFamily="brand">{stacksValue(status.debit_value)}</Type>
</Section.Subsection>
<Section.Subsection label="Received" tooltip="Total amount received from other addresses">
<Section.Subsection
label="Received"
tooltip="Total amount received from other addresses"
tooltipPosition="right"
>
<Type fontFamily="brand">{stacksValue(totalReceived)}</Type>
</Section.Subsection>
</>
Expand Down

0 comments on commit 3e5c5ea

Please sign in to comment.