style: adjust layout spacing in dashboard and file component

This commit is contained in:
grngxd 2025-06-10 13:41:43 +01:00
parent 1aedda9cb3
commit cf9f2181e9
2 changed files with 2 additions and 2 deletions

View file

@ -76,7 +76,7 @@ export default component$(({ file }: FileProps) => {
height={300}
src={`/api/${file.Owner}/${file.Name}`}
alt={file.Name}
class="w-full h-60 object-cover bg-neutral-800 flex-grow group-hover:scale-110 group-hover:saturate-150 transition-all duration-500"
class="w-full h-60 object-cover bg-neutral-800 flex-grow group-hover:scale-105 transition-all duration-500"
/>
)}
</a>

View file

@ -55,7 +55,7 @@ export default component$(() => {
</div>
)
: (
<div class="grid grid-cols-4 gap-4 p-4 mb-16">
<div class="grid grid-cols-4 gap-3 p-6 mb-14">
{files.value.map((file) => (
<File key={file.Name} file={file} />
))}