cuter scrollbars, better focus, small design improvements

This commit is contained in:
Sara
2023-09-21 16:53:47 +02:00
parent 3f2c3ddadc
commit 686c12ebfa
11 changed files with 59 additions and 40 deletions

View File

@@ -38,10 +38,7 @@ export default function TranscriptDetails(details: TranscriptDetails) {
{transcript?.loading === true ||
waveform?.loading == true ||
topics?.loading == true ? (
<Modal
title="Loading"
text={"Loading transcript..." + transcript.loading}
/>
<Modal title="Loading" text={"Loading transcript..."} />
) : (
<>
<Recorder
@@ -57,7 +54,7 @@ export default function TranscriptDetails(details: TranscriptDetails) {
useActiveTopic={useActiveTopic}
/>
<section className="relative w-full h-auto max-h-full bg-blue-400/20 rounded-lg md:rounded-xl px-2 md:px-4 flex flex-col justify-center align-center">
<div className="py-2 h-auto">
<div className="py-2 h-full">
{transcript?.response?.longSummary && (
<FinalSummary text={transcript?.response?.longSummary} />
)}