fix: file preview & selected items panel size on mobile (#1492)

This commit is contained in:
Aman Harwara
2022-09-07 18:02:37 +05:30
committed by GitHub
parent 4617afe14e
commit ecd870cdaa
3 changed files with 5 additions and 3 deletions

View File

@@ -60,7 +60,9 @@ const FileViewWithoutProtection = ({ application, viewControllerManager, file }:
</div>
</div>
</div>
<FilePreview file={file} application={application} key={file.uuid} />
<div className="flex min-h-screen flex-col md:min-h-full md:flex-grow">
<FilePreview file={file} application={application} key={file.uuid} />
</div>
</div>
)
}