fix: make tables take entire vh

This commit is contained in:
diced 2023-03-25 23:39:16 -07:00
parent 1ed267ad94
commit d7299f8220
No known key found for this signature in database
GPG key ID: 370BD1BA142842D1
4 changed files with 4 additions and 0 deletions

View file

@ -252,6 +252,7 @@ export default function Folders({ disableMediaPreview, exifEnabled, compress })
records={records ?? []}
fetching={folders.isLoading}
loaderBackgroundBlur={5}
minHeight='calc(100vh - 200px)'
loaderVariant='dots'
rowContextMenu={{
shadow: 'xl',

View file

@ -288,6 +288,7 @@ export default function Invites() {
onSortStatusChange={setSortStatus}
records={records ?? []}
fetching={!ok}
minHeight='calc(100vh - 200px)'
loaderBackgroundBlur={5}
loaderVariant='dots'
rowContextMenu={{

View file

@ -314,6 +314,7 @@ export default function Urls() {
records={records ?? []}
fetching={urls.isLoading}
loaderBackgroundBlur={5}
minHeight='calc(100vh - 200px)'
loaderVariant='dots'
rowContextMenu={{
shadow: 'xl',

View file

@ -190,6 +190,7 @@ export default function Users() {
records={records ? records.filter((x) => x.username !== self.username) : []}
fetching={users.length === 0}
loaderBackgroundBlur={5}
minHeight='calc(100vh - 200px)'
loaderVariant='dots'
rowContextMenu={{
shadow: 'xl',