correct filebrowser height for mobile view

This commit is contained in:
controlol 2021-11-02 23:37:44 +01:00
parent 0e0129acb5
commit 250ca3d1f8

View File

@ -26,6 +26,10 @@ export const FileBrowsersContainer = styled.div`
display: flex;
gap: 0 1rem;
height: calc(94vh - 9rem);
@media only screen and (max-width: 800px) {
height: calc(100vh - 9rem);
}
`
export const FileBrowserWrapper = styled.div`