Commit 4365fa51 authored by tom's avatar tom

update screenshots

parent a76b9b0b
...@@ -55,7 +55,7 @@ const AddressFromTo = ({ from, to, current, mode: modeProp, className, isLoading ...@@ -55,7 +55,7 @@ const AddressFromTo = ({ from, to, current, mode: modeProp, className, isLoading
noIcon={ noIcon } noIcon={ noIcon }
tokenHash={ tokenHash } tokenHash={ tokenHash }
truncation={ truncation } truncation={ truncation }
maxW="calc(100% - 28px)" maxW={ truncation === 'constant' ? undefined : 'calc(100% - 28px)' }
w="min-content" w="min-content"
/> />
</Flex> </Flex>
...@@ -68,7 +68,7 @@ const AddressFromTo = ({ from, to, current, mode: modeProp, className, isLoading ...@@ -68,7 +68,7 @@ const AddressFromTo = ({ from, to, current, mode: modeProp, className, isLoading
noIcon={ noIcon } noIcon={ noIcon }
tokenHash={ tokenHash } tokenHash={ tokenHash }
truncation={ truncation } truncation={ truncation }
maxW="calc(100% - 28px)" maxW={ truncation === 'constant' ? undefined : 'calc(100% - 28px)' }
w="min-content" w="min-content"
ml="28px" ml="28px"
/> />
...@@ -87,7 +87,7 @@ const AddressFromTo = ({ from, to, current, mode: modeProp, className, isLoading ...@@ -87,7 +87,7 @@ const AddressFromTo = ({ from, to, current, mode: modeProp, className, isLoading
noIcon={ noIcon } noIcon={ noIcon }
tokenHash={ tokenHash } tokenHash={ tokenHash }
truncation={ truncation } truncation={ truncation }
maxW="calc(50% - 18px)" maxW={ truncation === 'constant' ? undefined : 'calc(50% - 18px)' }
/> />
<IconSvg name="arrows/east" color={ iconColor } boxSize={ 5 } flexShrink={ 0 } isLoading={ isLoading }/> <IconSvg name="arrows/east" color={ iconColor } boxSize={ 5 } flexShrink={ 0 } isLoading={ isLoading }/>
{ to ? ( { to ? (
...@@ -99,7 +99,7 @@ const AddressFromTo = ({ from, to, current, mode: modeProp, className, isLoading ...@@ -99,7 +99,7 @@ const AddressFromTo = ({ from, to, current, mode: modeProp, className, isLoading
noIcon={ noIcon } noIcon={ noIcon }
tokenHash={ tokenHash } tokenHash={ tokenHash }
truncation={ truncation } truncation={ truncation }
maxW="calc(50% - 18px)" maxW={ truncation === 'constant' ? undefined : 'calc(50% - 18px)' }
/> />
) : <span>-</span> } ) : <span>-</span> }
</Flex> </Flex>
......
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