Commit 36656ecd authored by isstuev's avatar isstuev

change copy icon color

parent e52951fd
...@@ -27,13 +27,12 @@ const AddressCoinBalanceTableItem = (props: Props) => { ...@@ -27,13 +27,12 @@ const AddressCoinBalanceTableItem = (props: Props) => {
<LinkInternal href={ blockUrl } fontWeight="700">{ props.block_number }</LinkInternal> <LinkInternal href={ blockUrl } fontWeight="700">{ props.block_number }</LinkInternal>
</Td> </Td>
<Td> <Td>
{ props.transaction_hash ? { props.transaction_hash &&
( (
<Address w="150px" fontWeight="700"> <Address w="150px" fontWeight="700">
<AddressLink hash={ props.transaction_hash } type="transaction"/> <AddressLink hash={ props.transaction_hash } type="transaction"/>
</Address> </Address>
) : )
<Text fontWeight="700">-</Text>
} }
</Td> </Td>
<Td> <Td>
......
...@@ -24,6 +24,7 @@ const CopyToClipboard = ({ text, className }: {text: string; className?: string} ...@@ -24,6 +24,7 @@ const CopyToClipboard = ({ text, className }: {text: string; className?: string}
icon={ <CopyIcon/> } icon={ <CopyIcon/> }
w="20px" w="20px"
h="20px" h="20px"
color="gray.500"
variant="simple" variant="simple"
display="inline-block" display="inline-block"
flexShrink={ 0 } flexShrink={ 0 }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment