Commit 5fdba7b6 authored by tom's avatar tom

more design fixes

parent a70a3507
...@@ -37,11 +37,21 @@ const TransactionPageContent = ({ tab }: Props) => { ...@@ -37,11 +37,21 @@ const TransactionPageContent = ({ tab }: Props) => {
<Icon as={ eastArrowIcon } boxSize={ 6 } mr={ 2 } transform="rotate(180deg)"/> <Icon as={ eastArrowIcon } boxSize={ 6 } mr={ 2 } transform="rotate(180deg)"/>
Transactions Transactions
</Link> </Link>
<PageTitle text="Transaction details"/> <Flex alignItems="flex-start" flexDir={{ base: 'column', lg: 'row' }}>
<Flex marginLeft="auto" alignItems="center" flexWrap="wrap" columnGap={ 6 } rowGap={ 3 } mb={ 6 }> <PageTitle text="Transaction details"/>
<ExternalLink title="Open in Tenderly" href="#"/> <Flex
<ExternalLink title="Open in Blockchair" href="#"/> alignItems="center"
<ExternalLink title="Open in Etherscan" href="#"/> flexWrap="wrap"
columnGap={ 6 }
rowGap={ 3 }
ml={{ base: 'initial', lg: 'auto' }}
mb={{ base: 6, lg: 'initial' }}
py={ 2.5 }
>
<ExternalLink title="Open in Tenderly" href="#"/>
<ExternalLink title="Open in Blockchair" href="#"/>
<ExternalLink title="Open in Etherscan" href="#"/>
</Flex>
</Flex> </Flex>
<RoutedTabs <RoutedTabs
tabs={ TABS } tabs={ TABS }
......
...@@ -204,7 +204,7 @@ const TxDetails = () => { ...@@ -204,7 +204,7 @@ const TxDetails = () => {
<Box> <Box>
<Text as="span" fontWeight="500">Txn type: </Text> <Text as="span" fontWeight="500">Txn type: </Text>
<Text fontWeight="600" as="span">{ tx.type.value }</Text> <Text fontWeight="600" as="span">{ tx.type.value }</Text>
<Text fontWeight="400" as="span" ml={ 1 }>({ tx.type.eip })</Text> <Text fontWeight="400" as="span" ml={ 1 } variant="secondary">({ tx.type.eip })</Text>
<TextSeparator/> <TextSeparator/>
</Box> </Box>
<Box> <Box>
......
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