Commit efc31a28 authored by tom's avatar tom

fix internal txs in safari

parent df2663b5
...@@ -11,8 +11,8 @@ const TxInternalsTable = () => { ...@@ -11,8 +11,8 @@ const TxInternalsTable = () => {
<Thead> <Thead>
<Tr> <Tr>
<Th width="26%">Type</Th> <Th width="26%">Type</Th>
<Th width="calc(20% + 40px)" pr="0">From</Th> <Th width="20%" pr="0">From</Th>
<Th width="calc(20% - 40px)" pl="0">To</Th> <Th width="20%" pl="0">To</Th>
<Th width="17%" isNumeric>Value</Th> <Th width="17%" isNumeric>Value</Th>
<Th width="17%" isNumeric>Gas limit</Th> <Th width="17%" isNumeric>Gas limit</Th>
</Tr> </Tr>
......
...@@ -27,7 +27,7 @@ const TxInternalTableItem = ({ type, status, from, to, value, gasLimit }: Props) ...@@ -27,7 +27,7 @@ const TxInternalTableItem = ({ type, status, from, to, value, gasLimit }: Props)
<Td pr="0"> <Td pr="0">
<Address> <Address>
<AddressIcon hash={ from }/> <AddressIcon hash={ from }/>
<AddressLink ml={ 2 } fontWeight="500" hash={ from }/> <AddressLink ml={ 2 } fontWeight="500" hash={ from } flexGrow={ 1 }/>
<Icon as={ rightArrowIcon } boxSize={ 6 } mx={ 2 } flexShrink={ 0 } color="gray.500"/> <Icon as={ rightArrowIcon } boxSize={ 6 } mx={ 2 } flexShrink={ 0 } color="gray.500"/>
</Address> </Address>
</Td> </Td>
......
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