style(FilesBlock): enhance list styling for improved presentation
Deploy / verify (push) Successful in 40s
Deploy / deploy (push) Successful in 1m0s

- Updated the list styling in FilesBlock component to remove default list styles and improve layout consistency.
- Adjusted list item classes for better alignment and visual clarity, enhancing the overall user experience.
This commit is contained in:
Peter Meier
2026-04-22 10:51:39 +02:00
parent 5b5ec7c659
commit 9216138a8c
+2 -2
View File
@@ -97,9 +97,9 @@
{#if resolved.length === 0} {#if resolved.length === 0}
<p class="text-sm text-zinc-500">Keine Dateien verfügbar.</p> <p class="text-sm text-zinc-500">Keine Dateien verfügbar.</p>
{:else} {:else}
<ul class="flex flex-col gap-2"> <ul class="flex flex-col gap-2 list-none! p-0 m-0! ml-0">
{#each resolved as f} {#each resolved as f}
<li> <li class="list-none! ml-0">
<a <a
href={f.href} href={f.href}
class="group flex items-start gap-3 rounded-md border border-zinc-200 bg-white px-3 py-2 hover:border-zinc-400 hover:bg-zinc-50 transition-colors" class="group flex items-start gap-3 rounded-md border border-zinc-200 bg-white px-3 py-2 hover:border-zinc-400 hover:bg-zinc-50 transition-colors"