💄 Fix overflow in about modal and docker drawer #674

This commit is contained in:
Manuel
2023-01-31 18:06:49 +01:00
parent 2b76ae83b1
commit e20149a93c
4 changed files with 56 additions and 36 deletions

View File

@@ -68,6 +68,15 @@ export default function DockerMenuButton(props: any) {
position="right"
size="full"
title={<ContainerActionBar selected={selection} reload={reload} />}
styles={{
drawer: {
display: 'flex',
flexDirection: 'column',
},
body: {
minHeight: 0,
},
}}
>
<DockerTable containers={containers} selection={selection} setSelection={setSelection} />
</Drawer>

View File

@@ -120,7 +120,7 @@ export default function DockerTable({
});
return (
<ScrollArea style={{ height: '90vh' }} offsetScrollbars>
<ScrollArea style={{ height: '100%' }} offsetScrollbars>
<TextInput
placeholder={t('search.placeholder')}
mr="md"