Use a different styling for file uploads

This commit is contained in:
DaneEveritt 2022-07-24 18:03:45 -04:00
parent 12242848b0
commit 1d5d92f678
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 80 additions and 62 deletions

View file

@ -75,6 +75,7 @@ export default () => {
/>
<Can action={'file.create'}>
<div className={style.manager_actions}>
<FileManagerStatus />
<NewDirectoryButton />
<UploadButton />
<NavLink to={`/server/${id}/files/new${window.location.hash}`}>
@ -105,7 +106,6 @@ export default () => {
<FileObjectRow key={file.key} file={file} />
))}
<MassActionsBar />
<FileManagerStatus />
</div>
</CSSTransition>
)}