fix(ui): more responsive layout work

This commit is contained in:
blessedcoolant 2023-04-18 04:29:31 +12:00
parent 554f353773
commit 2feeb1f44c
3 changed files with 7 additions and 3 deletions

View File

@ -189,7 +189,12 @@ export default function ImageGalleryPanel() {
const imageGalleryContent = () => { const imageGalleryContent = () => {
return ( return (
<Flex w="100vw" h="100vh" paddingRight={{ base: 8, xl: 0 }}> <Flex
w="100vw"
h={{ base: 300, xl: '100vh' }}
paddingRight={{ base: 8, xl: 0 }}
paddingBottom={{ base: 4, xl: 0 }}
>
<ImageGalleryContent /> <ImageGalleryContent />
</Flex> </Flex>
); );

View File

@ -18,7 +18,7 @@ const InvokeAILogoComponent = () => {
minW="32px" minW="32px"
minH="32px" minH="32px"
/> />
<Flex gap={3} display={{ base: 'none', md: 'inherit' }}> <Flex gap={3} display={{ base: 'inherit', sm: 'none', md: 'inherit' }}>
<Text fontSize="xl"> <Text fontSize="xl">
invoke <strong>ai</strong> invoke <strong>ai</strong>
</Text> </Text>

View File

@ -1,6 +1,5 @@
import { import {
ChakraProps, ChakraProps,
Flex,
Icon, Icon,
Tab, Tab,
TabList, TabList,