mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Update NodeGraphOverlay.tsx
Graph overlay was expanding off the screen to the size of the prompt
This commit is contained in:
parent
79198b4bba
commit
08e66c5451
@ -13,14 +13,16 @@ const NodeGraphOverlay = () => {
|
|||||||
as="pre"
|
as="pre"
|
||||||
fontFamily="monospace"
|
fontFamily="monospace"
|
||||||
position="absolute"
|
position="absolute"
|
||||||
top={10}
|
top={2}
|
||||||
right={2}
|
right={2}
|
||||||
opacity={0.7}
|
opacity={0.7}
|
||||||
background="base.800"
|
background="base.800"
|
||||||
p={2}
|
p={2}
|
||||||
maxHeight={500}
|
maxHeight={500}
|
||||||
|
maxWidth={500}
|
||||||
overflowY="scroll"
|
overflowY="scroll"
|
||||||
borderRadius="md"
|
borderRadius="md"
|
||||||
|
boxShadow="0px 10px 10px rgba(0, 0, 0, 0.25)"
|
||||||
>
|
>
|
||||||
{JSON.stringify(graph, null, 2)}
|
{JSON.stringify(graph, null, 2)}
|
||||||
</Box>
|
</Box>
|
||||||
|
Loading…
Reference in New Issue
Block a user