From b20a2a12920984102d8fe934ed86335fb5de58b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20H=C3=A5rek=20Andreassen?= Date: Sat, 30 Mar 2024 15:50:25 +0100 Subject: [PATCH] style: Simplify colors and spacing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tim Hårek Andreassen --- components/SeriesCard.tsx | 4 ++-- routes/index.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/SeriesCard.tsx b/components/SeriesCard.tsx index a6cf1b9..0dae82e 100644 --- a/components/SeriesCard.tsx +++ b/components/SeriesCard.tsx @@ -5,9 +5,9 @@ export default function SeriesCard(props: { serie: SearchResult; origin: string const feedUrl = new URL(`/api/feeds/${props.serie.seriesId}`, props.origin); const image = props.serie.images[0]; return ( -
+
-

{props.serie.title}

+

{props.serie.title}

{props.serie.description}

{feedUrl.toString()} diff --git a/routes/index.tsx b/routes/index.tsx index c27eae8..d8f4062 100644 --- a/routes/index.tsx +++ b/routes/index.tsx @@ -28,7 +28,7 @@ export default function Home({ data }: PageProps) { {data.query ? `Søk: ${data.query} - ` : ""}NRSS -
+

📻 NRSS @@ -38,7 +38,7 @@ export default function Home({ data }: PageProps) { {data.result ? ( -
+
{data.result.map((result) => (