Footer fix

This commit is contained in:
Koper
2023-07-21 19:52:17 +07:00
parent 0db646e0fd
commit 1be333b512
2 changed files with 2 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ export function Dashboard({
return (
<>
<div className="w-3/4 py-4">
<div className="flex-grow w-3/4 py-4">
<div className="text-center py-6">
<h1 className="text-2xl font-bold text-blue-500">Meeting Notes</h1>
</div>
@@ -57,7 +57,7 @@ export function Dashboard({
)}
</div>
<footer className="w-full bg-gray-800 text-white text-center py-4 fixed inset-x-0 bottom-0 text-2xl">
<footer className="w-full bg-gray-800 text-white text-center py-4 text-2xl">
{transcriptionText}
</footer>
</>

View File

@@ -17,9 +17,7 @@ export default function RootLayout({ children }) {
<title>Test</title>
</Head>
<body className={roboto.className + " flex flex-col min-h-screen"}>
<main className="flex-grow">
{children}
</main>
</body>
</html>