Minor UI update on UploadDetails

This commit is contained in:
Serkan Reis 2023-01-08 20:27:37 +03:00
parent 123cbea66c
commit ef80449b91

View File

@ -318,11 +318,11 @@ export const UploadDetails = ({ onChange, minterType, baseMinterAcquisitionMetho
and upload your assets & metadata manually to get a base URI for your collection. and upload your assets & metadata manually to get a base URI for your collection.
</p> </p>
<div> <div>
<TextInput {...baseTokenUriState} className="w-1/2" /> <TextInput {...baseTokenUriState} className="ml-4 w-1/2" />
</div> </div>
<Conditional test={minterType !== 'base'}> <Conditional test={minterType !== 'base'}>
<div> <div>
<TextInput {...coverImageUrlState} className="mt-2 w-1/2" /> <TextInput {...coverImageUrlState} className="mt-2 ml-4 w-1/2" />
</div> </div>
</Conditional> </Conditional>
</div> </div>
@ -342,13 +342,13 @@ export const UploadDetails = ({ onChange, minterType, baseMinterAcquisitionMetho
and upload your asset & metadata manually to get a URI for your token before minting. and upload your asset & metadata manually to get a URI for your token before minting.
</p> </p>
<div> <div>
<TextInput {...baseTokenUriState} className="w-1/2" /> <TextInput {...baseTokenUriState} className="ml-4 w-1/2" />
</div> </div>
<Conditional <Conditional
test={minterType !== 'base' || (minterType === 'base' && baseMinterAcquisitionMethod === 'new')} test={minterType !== 'base' || (minterType === 'base' && baseMinterAcquisitionMethod === 'new')}
> >
<div> <div>
<TextInput {...coverImageUrlState} className="mt-2 w-1/2" /> <TextInput {...coverImageUrlState} className="mt-2 ml-4 w-1/2" />
</div> </div>
</Conditional> </Conditional>
</div> </div>