#177: Admin-Personenliste — Trennlinien der Aktionen-Spalte buendig #178

Merged
stwaidele merged 1 commits from admin-actions-cell-align into main 2026-07-28 08:36:50 +02:00
2 changed files with 5 additions and 3 deletions

View File

@ -124,8 +124,10 @@ function UserRow({
<td>{user.pondCount}</td>
<td>{user.lastLoginAt ? new Date(user.lastLoginAt).toLocaleDateString() : t('never')}</td>
<td className="user-row__actions">
{/* Flex lives on the inner div: a td with display:flex stops behaving
like a table cell and its bottom border no longer meets the row's. */}
{!isSelf && (
<>
<div className="user-row__actions-inner">
{user.status === 'PENDING_VERIFICATION' && (
<IconButton
className="user-row__resend"
@ -180,7 +182,7 @@ function UserRow({
<Trash2 aria-hidden />
</IconButton>
)}
</>
</div>
)}
</td>
</tr>

View File

@ -2983,7 +2983,7 @@ ul[data-type='task_list'] li p:last-of-type {
font-size: 0.85rem;
}
.user-row__actions {
.user-row__actions-inner {
display: flex;
align-items: center;
gap: var(--space-2);