Lib: Remove non-lazy image

We need the width/height anyways to determine the max size, so don't
bother with non-lazy stuff
This commit is contained in:
2024-12-27 19:16:02 +01:00
parent e4a4a15367
commit 2d2fd9f622
10 changed files with 53 additions and 27 deletions

View File

@ -47,7 +47,8 @@
<div
use:lazyload
onLazyVisible={lazy_visible_handler}
style="aspect-ratio: {imgwidth} / {imgheight}; {containerstyle ?? ''}"
style="aspect-ratio: {imgwidth} / {imgheight}; {containerstyle ??
''}; max-width: {imgwidth}px; max-height: {imgheight}px"
>
{#if load}
{#await fetch_image_base64(src) then data}