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 (
<Flex gap={3} w="full" flexWrap={isVaeEnabled ? 'wrap' : 'nowrap'}>
<Flex gap={3} w="full">
<Box w="full">
<ModelSelect />
</Box>
<Flex gap={3} w="full">
{isVaeEnabled && (
<Box w="full">
<VAESelect />
</Box>
)}
</Flex>
<Box w="full">
<ParamScheduler />
</Box>
</Flex>
</Flex>
);
};