Skip to content

Commit

Permalink
fix: change to hstack to align buttons, closes #4592
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Dec 4, 2023
1 parent b104a48 commit d00d83f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { toast } from 'react-hot-toast';
import { useLocation, useNavigate } from 'react-router-dom';

import { Box, Stack } from 'leather-styles/jsx';
import { Box, HStack, Stack } from 'leather-styles/jsx';
import get from 'lodash.get';

import { Blockchains } from '@shared/models/blockchain.model';
Expand Down Expand Up @@ -79,14 +79,14 @@ export function SendInscriptionSummary() {
<InfoCardRow title="Fee" value={feeRowValue} />
</Stack>

<Stack gap="space.04" width="100%">
<HStack gap="space.04" width="100%">
<InfoCardBtn
onClick={onClickLink}
icon={<ExternalLinkIcon size="14px" />}
label="View details"
/>
<InfoCardBtn onClick={onClickCopy} icon={<CopyIcon size="14px" />} label="Copy ID" />
</Stack>
</HStack>
</InfoCard>
</BaseDrawer>
);
Expand Down

0 comments on commit d00d83f

Please sign in to comment.