Skip to content

Commit

Permalink
margin fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NahuelNoves committed Mar 12, 2024
1 parent 301ff00 commit 674f102
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ui/tx/TxSubHeading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const TxSubHeading = ({ hash, hasTag, txQuery }: Props) => {
<Box display={{ base: 'block', lg: 'flex' }} alignItems="center" w="100%">
{ content }
<Flex alignItems="center" justifyContent={{ base: 'start', lg: 'space-between' }} flexGrow={ 1 }>
{ !hasTag && <AccountActionsMenu mx={ 3 } mt={{ base: 3, lg: 0 }}/> }
{ !hasTag && <AccountActionsMenu mr={ 3 } mt={{ base: 3, lg: 0 }}/> }
<NetworkExplorers type="tx" pathParam={ hash } ml={{ base: 0, lg: 'auto' }} mt={{ base: 3, lg: 0 }}/>
</Flex>
</Box>
Expand Down
4 changes: 2 additions & 2 deletions ui/tx/assetFlows/components/NovesSubHeadingInterpretation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const NovesSubHeadingInterpretation: FC<Props> = ({ data, isLoading }) => {
const description = getDescriptionItems(data);

return (
<Skeleton isLoaded={ !isLoading } gap={ 2 } overflow="hidden">
<Box display="flex" gap={ 2 } alignItems="center" flexWrap="wrap" mr={ 2 }>
<Skeleton isLoaded={ !isLoading } gap={ 2 } overflow="hidden" mr={ 3 }>
<Box display="flex" gap={ 2 } alignItems="center" flexWrap="wrap">
{ description.map((item, i) => (
<Fragment key={ item.text }>
<Text fontWeight="500" fontSize="lg" display="inline-flex" alignItems="center" gap={ 2 } wordBreak="break-word">
Expand Down

0 comments on commit 674f102

Please sign in to comment.