style(FilesBlock): enhance list styling for improved presentation
- 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:
@@ -97,9 +97,9 @@
|
||||
{#if resolved.length === 0}
|
||||
<p class="text-sm text-zinc-500">Keine Dateien verfügbar.</p>
|
||||
{: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}
|
||||
<li>
|
||||
<li class="list-none! ml-0">
|
||||
<a
|
||||
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"
|
||||
|
||||
Reference in New Issue
Block a user