q icon to osbar

This commit is contained in:
grngxd 2025-06-21 21:58:33 +01:00
parent b36d3b76a1
commit 3217373024
3 changed files with 12 additions and 7 deletions

View file

@ -49,12 +49,10 @@ const Files = component$<{
})
return (
<div class="mb-6 flex flex-col w-full max-h-full overflow-y-scroll overflow-x-hidden mask-clip-content rounded-3xl">
<div class="mb-6 flex flex-col w-full max-h-full overflow-y-auto overflow-x-hidden mask-clip-content rounded-3xl">
<div class="w-full h-full grid grid-cols-4 gap-2">
{files.value.map((file) => (
Array.from({ length: 15 }).map((_, i) => (
<File file={file} key={`${file.ID}-${i}`} />
))
<File key={file.ID} file={file} />
))}
</div>
</div>