Open images in a modal

This commit is contained in:
Jon Staab
2024-10-17 15:02:03 -07:00
parent 4683fc4203
commit 13bb2f80a8
6 changed files with 29 additions and 13 deletions
@@ -0,0 +1,12 @@
<script lang="ts">
import Button from '@lib/components/Button.svelte'
import {imgproxy} from "@app/state"
export let url
const back = () => history.back()
</script>
<Button class="m-auto h-screen w-screen p-4 cursor-pointer" on:click={back}>
<img alt="" src={imgproxy(url)} class="m-auto rounded-box max-w-full max-h-full" />
</Button>