Fix: clicking the magnifying icon actually works now

This commit is contained in:
Pieter Vander Vennet 2024-09-02 12:03:51 +02:00
parent 29d52e0fc6
commit 5478711bed

View file

@ -41,7 +41,7 @@
/> />
{#if canZoom && loaded} {#if canZoom && loaded}
<div class="absolute right-0 top-0 bg-black-transparent rounded-bl-full"> <div class="absolute right-0 top-0 bg-black-transparent rounded-bl-full" on:click={() => previewedImage.set(image)}>
<MagnifyingGlassPlusIcon class="w-8 h-8 pl-3 pb-3 cursor-zoom-in" color="white" /> <MagnifyingGlassPlusIcon class="w-8 h-8 pl-3 pb-3 cursor-zoom-in" color="white" />
</div> </div>
{/if} {/if}