From 111870049d61d84e5db4098ad5adf18cd164eb03 Mon Sep 17 00:00:00 2001 From: xangelo Date: Tue, 30 Jan 2024 10:16:45 -0500 Subject: [PATCH] fix(accessibility): header level increases --- src/public/style.css | 2 +- src/views.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/public/style.css b/src/public/style.css index b79038e..50bf413 100644 --- a/src/public/style.css +++ b/src/public/style.css @@ -1,7 +1,7 @@ .item { .header { - font-size: 0.8rem; + font-size: 1.2rem; img { width: 18px; height: 18px; diff --git a/src/views.ts b/src/views.ts index 6c33938..f456ad5 100644 --- a/src/views.ts +++ b/src/views.ts @@ -3,12 +3,12 @@ import { FeedWithEntrySchema } from "./types"; export function renderFeedItemHeader(entry: FeedWithEntrySchema): string { return ` -
+

Favicon for ${entry.feed_title} [ ${entry.feed_title} ] -

+ `; } -- 2.25.1