fix: make tables take entire vh
This commit is contained in:
parent
1ed267ad94
commit
d7299f8220
4 changed files with 4 additions and 0 deletions
|
@ -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',
|
||||
|
|
|
@ -288,6 +288,7 @@ export default function Invites() {
|
|||
onSortStatusChange={setSortStatus}
|
||||
records={records ?? []}
|
||||
fetching={!ok}
|
||||
minHeight='calc(100vh - 200px)'
|
||||
loaderBackgroundBlur={5}
|
||||
loaderVariant='dots'
|
||||
rowContextMenu={{
|
||||
|
|
|
@ -314,6 +314,7 @@ export default function Urls() {
|
|||
records={records ?? []}
|
||||
fetching={urls.isLoading}
|
||||
loaderBackgroundBlur={5}
|
||||
minHeight='calc(100vh - 200px)'
|
||||
loaderVariant='dots'
|
||||
rowContextMenu={{
|
||||
shadow: 'xl',
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue