fix: recent pictures styles

This commit is contained in:
2025-07-18 16:07:34 +01:00
parent 75b2cc53a4
commit 4b85cae22c
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ export const ImageComponent: Component<{ ID: string }> = (props) => {
return (
<A href={`/image/${props.ID}`} class="w-full h-full">
<img
class="w-full h-full object-contain"
class="w-full object-contain rounded-xl"
src={`${base}/image/${props.ID}`}
/>
</A>