Fix recording layout

This commit is contained in:
2024-07-18 12:08:32 +02:00
parent 74a1c69e1f
commit 334b68d3c5
2 changed files with 3 additions and 3 deletions

View File

@@ -93,8 +93,8 @@ const TranscriptRecord = (details: TranscriptDetails) => {
{status === "processing" ? "Processing meeting" : "Record meeting"}
</Heading>
<Flex direction={{ base: "column-reverse", md: "row" }}>
<Box w={{ md: "50%" }}>
<Flex direction={{ base: "column-reverse", md: "row" }} h={"full"}>
<Box w={{ md: "50%" }} h={{ base: "80%", md: "full" }}>
<TopicList
topics={webSockets.topics}
useActiveTopic={useActiveTopic}

View File

@@ -112,7 +112,7 @@ export function TopicList({
<Flex
position={"relative"}
w={"100%"}
h={"100%"}
h={"95%"}
flexDirection={"column"}
justify={"center"}
align={"center"}