We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a830dab commit 4394e71Copy full SHA for 4394e71
1 file changed
src/components/Content.tsx
@@ -48,7 +48,12 @@ const Content = () => {
48
</Box>
49
</Collapse>
50
51
- <Box ref={boxRef} width="100%" height={isOpen ? "32vh" : "64vh"} overflow="hidden">
+ <Box
52
+ ref={boxRef}
53
+ width="100%"
54
+ height={isOpen ? "calc(100vh - 630px)" : "calc(100vh - 330px)"}
55
+ overflow="hidden"
56
+ >
57
<Graph graphData={filteredGraphData} width={size.width} height={size.height} />
58
59
0 commit comments