From c6170acdfad184a540fb2a3b07bcc8289cc4ca6f Mon Sep 17 00:00:00 2001 From: Peter Meier Date: Tue, 14 Apr 2026 15:45:48 +0200 Subject: [PATCH] feat(posts): iconify icons + constrain search width on desktop - Search input limited to sm:max-w-sm (full width only on mobile) - mdi:magnify prefix, mdi:close clear, mdi:calendar-clock on events, mdi:rss next to RSS link --- src/components/BlogOverview.svelte | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/src/components/BlogOverview.svelte b/src/components/BlogOverview.svelte index 3da3cf3..fb59cfb 100644 --- a/src/components/BlogOverview.svelte +++ b/src/components/BlogOverview.svelte @@ -2,6 +2,7 @@ import PostCard from "./PostCard.svelte"; import Tag from "./Tag.svelte"; import Pagination from "./Pagination.svelte"; + import Ico from "./Ico.svelte"; import type { PostEntry } from "../lib/cms"; import { postHref } from "../lib/blog-utils"; import { t as tStatic, T } from "../lib/translations"; @@ -95,21 +96,26 @@
{#if searchIndex}
-
@@ -117,7 +123,10 @@ {#if !isSearching && upcomingEvents.length > 0}
-

Nächste Termine

+

+ + Nächste Termine +

    {#each upcomingEvents as ev}
  • @@ -232,7 +241,10 @@
- RSS-Feed abonnieren + + + RSS-Feed abonnieren +
{/if}