From 410120007f3ae4370798ff584a076d6e71e8a0e7 Mon Sep 17 00:00:00 2001 From: Sara Date: Mon, 25 Sep 2023 19:42:36 +0200 Subject: [PATCH] minor changes to fonts, spacing and colors --- www/app/layout.tsx | 8 +++++--- www/app/transcripts/finalSummary.tsx | 2 +- www/app/transcripts/new/page.tsx | 6 +++++- www/app/transcripts/recorder.tsx | 5 ++++- www/app/transcripts/topicList.tsx | 12 +++++++----- www/tailwind.config.js | 3 +++ 6 files changed, 25 insertions(+), 11 deletions(-) diff --git a/www/app/layout.tsx b/www/app/layout.tsx index de423da8..79f1b8e2 100644 --- a/www/app/layout.tsx +++ b/www/app/layout.tsx @@ -81,9 +81,11 @@ export default function RootLayout({ children }) { alt="Reflector" />
-

Reflector

-

- Capture The Signal, Not The Noise +

+ Reflector +

+

+ Capture the signal, not the noise

diff --git a/www/app/transcripts/finalSummary.tsx b/www/app/transcripts/finalSummary.tsx index a9646cee..0e76c869 100644 --- a/www/app/transcripts/finalSummary.tsx +++ b/www/app/transcripts/finalSummary.tsx @@ -5,7 +5,7 @@ type FinalSummaryProps = { export default function FinalSummary(props: FinalSummaryProps) { return (
-

Final Summary

+

Final Summary

{props.text}

); diff --git a/www/app/transcripts/new/page.tsx b/www/app/transcripts/new/page.tsx index 07a0b8b9..c089e679 100644 --- a/www/app/transcripts/new/page.tsx +++ b/www/app/transcripts/new/page.tsx @@ -67,7 +67,11 @@ const TranscriptCreate = () => { useActiveTopic={useActiveTopic} autoscroll={true} /> -
+
{!hasRecorded ? (
diff --git a/www/app/transcripts/recorder.tsx b/www/app/transcripts/recorder.tsx index f5b1abca..415afed1 100644 --- a/www/app/transcripts/recorder.tsx +++ b/www/app/transcripts/recorder.tsx @@ -278,7 +278,10 @@ export default function Recorder(props: RecorderProps) { return (
-
+
{isRecording && (
diff --git a/www/app/transcripts/topicList.tsx b/www/app/transcripts/topicList.tsx index 65a76276..3a60e1b4 100644 --- a/www/app/transcripts/topicList.tsx +++ b/www/app/transcripts/topicList.tsx @@ -61,7 +61,7 @@ export function TopicList({ }, [activeTopic, autoscroll]); return ( -
+
{topics.length > 0 ? ( <> {autoscroll && ( @@ -73,13 +73,13 @@ export function TopicList({
{topics.map((topic, index) => (
diff --git a/www/tailwind.config.js b/www/tailwind.config.js index 15f0dfb9..38e573d5 100644 --- a/www/tailwind.config.js +++ b/www/tailwind.config.js @@ -15,6 +15,9 @@ module.exports = { animation: { "spin-slow": "spin 3s linear infinite", }, + colors: { + bluegrey: "RGB(90, 122, 158)", + }, }, }, plugins: [],