Skip to content

Commit

Permalink
Make upload button look better
Browse files Browse the repository at this point in the history
  • Loading branch information
espidev committed Jul 26, 2023
1 parent 85d6fd3 commit b485eb9
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions website/app/collection/upload/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,20 @@ export default function CollectionUploadPage() {
{
isDragActive ?
<p>Drop files here...</p> :
<p>Drag and drop files here, or click to select files</p>
<p>
Drag and drop files here, or click to select files

<br />
</p>
}

</div>
<Button variant="contained" onClick={handleUpload}>Upload</Button>

{
files.length > 0 ?
<Button variant="outlined" onClick={handleUpload} size="large">Upload</Button> :
<></>
}

<ul>
{
Expand Down

0 comments on commit b485eb9

Please sign in to comment.