From 4a5304586d98abddc3acc2455fc1ccf667e2ee71 Mon Sep 17 00:00:00 2001 From: June Date: Tue, 3 Feb 2026 16:58:28 +1300 Subject: [PATCH] Remove entry indicator if an image is present --- src/lib/components/calendar.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/components/calendar.svelte b/src/lib/components/calendar.svelte index 67e6da6..a978976 100644 --- a/src/lib/components/calendar.svelte +++ b/src/lib/components/calendar.svelte @@ -201,7 +201,7 @@ {day.dayName} {/if} {day.date} - {#if day.entry} + {#if day.entry && !day.entry.image} {/if} @@ -241,7 +241,7 @@ } .expand-btn:hover { - background: rgba(233, 161, 167, 0.1); + background: rgba(255, 255, 255, 0.1); border-color: #009FB7; }