Fixed footer height (it used to collapse if no text)

This commit is contained in:
Koper
2023-07-26 16:32:31 +07:00
parent 8392181eb6
commit 499edd665b
2 changed files with 3 additions and 3 deletions

View File

@@ -57,8 +57,8 @@ export function Dashboard({
)}
</div>
<footer className="w-full bg-gray-800 text-white text-center py-4 text-2xl">
{transcriptionText}
<footer className="w-full bg-gray-800 text-white text-center py-4 text-2xl mt-8 h-32">
&nbsp;{transcriptionText}&nbsp;
</footer>
</>
);