Remove entry indicator if an image is present

This commit is contained in:
2026-02-03 16:58:28 +13:00
parent ca3fc60ee1
commit 4a5304586d

View File

@@ -201,7 +201,7 @@
<span class="day-name">{day.dayName}</span>
{/if}
<span class="date">{day.date}</span>
{#if day.entry}
{#if day.entry && !day.entry.image}
<span class="entry-indicator"></span>
{/if}
</div>
@@ -241,7 +241,7 @@
}
.expand-btn:hover {
background: rgba(233, 161, 167, 0.1);
background: rgba(255, 255, 255, 0.1);
border-color: #009FB7;
}