Lib: Make LazyImage full width

This commit is contained in:
2024-12-16 02:58:30 +01:00
parent 79c97ce232
commit 272996ff68

View File

@ -36,7 +36,7 @@
{#await loadImage(src)}
<!-- Loading... -->
{:then data}
<img src={data} {...restProps} />
<img src={data} style="width: 100%" {...restProps} />
{/await}
{/if}
</div>