Skip to content

Commit

Permalink
fix: launchapd main info ui
Browse files Browse the repository at this point in the history
  • Loading branch information
c121914yu committed Sep 11, 2023
1 parent 6c68bd3 commit a01910e
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,14 @@ const AppDetail = ({ appName }: { appName: string }) => {
{appDetail ? <AppBaseInfo app={appDetail} /> : <Loading loading={true} fixed={false} />}
</Box>
<Flex flexDirection={'column'} minH={'100%'} flex={'1 0 0'} w={0} overflow={'overlay'}>
<Box mb={4} bg={'white'} border={theme.borders.sm} borderRadius={'md'} minH={'257px'}>
<Box
mb={4}
bg={'white'}
border={theme.borders.sm}
borderRadius={'md'}
flexShrink={0}
minH={'257px'}
>
{appDetail ? <AppMainInfo app={appDetail} /> : <Loading loading={true} fixed={false} />}
</Box>
<Box
Expand Down

0 comments on commit a01910e

Please sign in to comment.