mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(ui): more responsive layout work
This commit is contained in:
parent
554f353773
commit
2feeb1f44c
@ -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>
|
||||||
);
|
);
|
||||||
|
@ -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>
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
import {
|
import {
|
||||||
ChakraProps,
|
ChakraProps,
|
||||||
Flex,
|
|
||||||
Icon,
|
Icon,
|
||||||
Tab,
|
Tab,
|
||||||
TabList,
|
TabList,
|
||||||
|
Loading…
Reference in New Issue
Block a user