This commit is contained in:
Jon Staab
2024-10-17 16:03:50 -07:00
parent 2f561149fa
commit fd5b0a9af3
33 changed files with 129 additions and 140 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
<script lang="ts">
import Button from '@lib/components/Button.svelte'
import Button from "@lib/components/Button.svelte"
import {imgproxy} from "@app/state"
export let url
@@ -7,6 +7,6 @@
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 class="m-auto h-screen w-screen cursor-pointer p-4" on:click={back}>
<img alt="" src={imgproxy(url)} class="m-auto max-h-full max-w-full rounded-box" />
</Button>