mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
styling
This commit is contained in:
@@ -15,7 +15,7 @@ export function Dashboard({
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="flex-grow w-3/4 py-4">
|
||||
<div className="h-[60svh] w-3/4 flex flex-col">
|
||||
<div className="text-center py-6">
|
||||
<h1 className="text-2xl font-bold text-blue-500">Meeting Notes</h1>
|
||||
</div>
|
||||
@@ -25,6 +25,7 @@ export function Dashboard({
|
||||
<div className="w-1/4"></div>
|
||||
</div>
|
||||
|
||||
<div className="py-2 overflow-y-auto">
|
||||
{topics.map((item, index) => (
|
||||
<div key={index} className="border-b-2 py-2">
|
||||
<div
|
||||
@@ -46,7 +47,10 @@ export function Dashboard({
|
||||
)}
|
||||
</div>
|
||||
))}
|
||||
|
||||
{topics.length === 0 && (
|
||||
<div className="text-center text-gray-500">No topics yet</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{finalSummary && (
|
||||
<div className="mt-2 p-2 bg-white temp-transcription rounded">
|
||||
@@ -57,7 +61,7 @@ export function Dashboard({
|
||||
)}
|
||||
</div>
|
||||
|
||||
<footer className="w-full bg-gray-800 text-white text-center py-4 text-2xl mt-8 h-32">
|
||||
<footer className="h-[7svh] w-full bg-gray-800 text-white text-center py-4 text-2xl mt-8 h-32">
|
||||
{transcriptionText}
|
||||
</footer>
|
||||
</>
|
||||
|
||||
@@ -16,7 +16,7 @@ const App = () => {
|
||||
|
||||
return (
|
||||
<div className="flex flex-col items-center h-[100svh]">
|
||||
<div className="text-center py-6 mt-10">
|
||||
<div className="h-[13svh] flex flex-col justify-center items-center">
|
||||
<h1 className="text-5xl font-bold text-blue-500">Reflector</h1>
|
||||
<p className="text-gray-500">Capture The Signal, Not The Noise</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user