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:
Daniel Michelberger 2026-09-07 22:11:28 +02:00
parent 66e351e54f
commit b3d77dddbe

View file

@ -244,7 +244,7 @@
dayOf(s.until) || undefined,
)}
<Card>
<CardContent class="py-4 space-y-2">
<CardContent class="space-y-2">
<div class="flex items-start justify-between gap-2">
<div class="min-w-0">
<p class="font-medium truncate">{s.name}</p>
@ -341,7 +341,7 @@
</div>
</CardContent>
</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">
<Pencil class="h-4 w-4" />
</Button>