style: add space between PhysicalSample dialog header and images

close #75
This commit is contained in:
Timothée Goguely 2024-12-20 12:06:46 +01:00
parent 20a836dc6e
commit 4cba861387

View file

@ -14,8 +14,8 @@
<time class="font-medium text-sm py-8" :datetime="physicalSample.date">{{ physicalSample.date }}</time>
<p>{{ physicalSample.description }}</p>
</template>
<div class="overflow-y h-full pb-32">
<div class="masonry flow pt-32">
<div class="overflow-y h-full mt-32 pb-32">
<div class="masonry flow pb-32">
<template v-for="(item, index) in physicalSample.files" :key="item.id">
<img class="rounded-xl" :src="item.url" :alt="item.alt" :data-id="item.id" />
</template>