fix: doppeltes Padding in Karten mit Knopfzeile
Die Karte bringt py-4 mit; Inhalt und Knopfzeile brachten es ein zweites Mal. Unter dem letzten Knopf standen dadurch 32 statt 16 px. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01P32KoesVtABd6xWsqMKzhr
This commit is contained in:
parent
66e351e54f
commit
b3d77dddbe
1 changed files with 2 additions and 2 deletions
|
|
@ -244,7 +244,7 @@
|
||||||
dayOf(s.until) || undefined,
|
dayOf(s.until) || undefined,
|
||||||
)}
|
)}
|
||||||
<Card>
|
<Card>
|
||||||
<CardContent class="py-4 space-y-2">
|
<CardContent class="space-y-2">
|
||||||
<div class="flex items-start justify-between gap-2">
|
<div class="flex items-start justify-between gap-2">
|
||||||
<div class="min-w-0">
|
<div class="min-w-0">
|
||||||
<p class="font-medium truncate">{s.name}</p>
|
<p class="font-medium truncate">{s.name}</p>
|
||||||
|
|
@ -341,7 +341,7 @@
|
||||||
</div>
|
</div>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</a>
|
</a>
|
||||||
<div class="px-6 pb-4 flex items-center justify-end gap-1 border-t pt-3">
|
<div class="px-4 flex items-center justify-end gap-1 border-t pt-3">
|
||||||
<Button variant="ghost" size="icon" onclick={() => openEdit(event)} tooltip="Bearbeiten">
|
<Button variant="ghost" size="icon" onclick={() => openEdit(event)} tooltip="Bearbeiten">
|
||||||
<Pencil class="h-4 w-4" />
|
<Pencil class="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue