Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Create/Create.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export const Create = () => {
}, [address])

return (
<div className="card">
<div className="card max-w-lg">
{createElement(_consts.CREATE_SCREEN_MAP[step.screen].comp, {
onPrev: handleOnPrev,
onNext: handleOnNext,
Expand Down
4 changes: 2 additions & 2 deletions src/components/Create/Link/Input.view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ export const CreateLinkInputView = ({
}, [_tokenValue, inputDenomination])

return (
<div className="flex w-full flex-col items-center justify-center gap-6 text-center">
<div className="space-y-6 text-center">
<div className="space-y-2">
<h2
className="max-h-[92px] w-full overflow-hidden text-h2"
Expand All @@ -277,7 +277,7 @@ export const CreateLinkInputView = ({
? `Send to ${recipient.name?.endsWith('.eth') ? recipient.name : shortenAddressLong(recipient.address ?? '')}`
: `Send to ${recipient.name}`}
</h2>
<div className="max-w-96 text-center">
<div className="max-w-96 mx-auto text-center">
{createType === 'link' &&
'Deposit some crypto to the link, no need for wallet addresses. Send the link to the recipient. They will be able to claim the funds in any token on any chain from the link.'}
{createType === 'email_link' &&
Expand Down
Loading