fix: Rearrange Model Select to take full width

This commit is contained in:
blessedcoolant 2023-07-09 07:23:31 +12:00
parent f7968ef8ce
commit 5fb24197cd

View File

@ -10,21 +10,20 @@ const ParamModelandVAEandScheduler = () => {
return ( return (
<Flex gap={3} w="full" flexWrap={isVaeEnabled ? 'wrap' : 'nowrap'}> <Flex gap={3} w="full" flexWrap={isVaeEnabled ? 'wrap' : 'nowrap'}>
<Flex gap={3} w="full">
<Box w="full"> <Box w="full">
<ModelSelect /> <ModelSelect />
</Box> </Box>
<Flex gap={3} w="full">
{isVaeEnabled && ( {isVaeEnabled && (
<Box w="full"> <Box w="full">
<VAESelect /> <VAESelect />
</Box> </Box>
)} )}
</Flex>
<Box w="full"> <Box w="full">
<ParamScheduler /> <ParamScheduler />
</Box> </Box>
</Flex> </Flex>
</Flex>
); );
}; };