Skip to content
Merged
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
7 changes: 2 additions & 5 deletions apps/studio/src/modules/add-site/components/options.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function ImportDropZone( { onValidated }: { onValidated: ( file: File ) => void
return (
<div
className={ cx(
'group w-full border border-dashed rounded-xl p-6 text-center',
'group w-full border rounded-xl p-6 text-center',
'bg-frame/50 backdrop-blur-md transition-colors cursor-pointer',
isDragging
? 'border-frame-theme bg-frame-theme/5'
Expand Down Expand Up @@ -182,7 +182,7 @@ export default function AddSiteOptions( {
{ __( 'Start fresh or bring an existing site into your Studio.' ) }
</Text>

<div className="flex gap-3 w-full max-w-[540px]">
<div className="flex gap-5 w-full max-w-[760px]">
<OptionCard
illustration={ <BuildNewSiteIllustration /> }
title={ __( 'Build a new site' ) }
Expand All @@ -201,9 +201,6 @@ export default function AddSiteOptions( {
onClick={ () => onOptionSelect( 'connect' ) }
disabled={ isOffline }
/>
</div>

<div className="w-full max-w-[540px] mt-3">
<ImportDropZone onValidated={ handleValidatedBackup } />
</div>
</VStack>
Expand Down
Loading