- |
+ |
{d.name}
|
- {d.description || '—'} |
+ {d.description || '—'} |
{#if canCreate}
-
+ |
{#if canDelete}
@@ -188,3 +188,12 @@
{/if}
+
+
diff --git a/frontend/src/pages/Participants.svelte b/frontend/src/pages/Participants.svelte
index ef2274f..bb56e01 100644
--- a/frontend/src/pages/Participants.svelte
+++ b/frontend/src/pages/Participants.svelte
@@ -506,7 +506,7 @@
@media (max-width: 640px) {
.td-name { width: 100%; }
- .td-actions { width: 100%; }
+ .td-actions { width: 100%; display: flex; justify-content: flex-end; }
.ticket-rows { padding: 0; border: none; border-radius: 0; margin-top: -0.5rem; }
.ticket-rows td { width: 100%; }
.ticket-row { flex-direction: column; gap: 0.35rem; }
diff --git a/frontend/src/pages/Users.svelte b/frontend/src/pages/Users.svelte
index c649964..ee6b18a 100644
--- a/frontend/src/pages/Users.svelte
+++ b/frontend/src/pages/Users.svelte
@@ -278,7 +278,7 @@
diff --git a/frontend/src/pages/Volunteers.svelte b/frontend/src/pages/Volunteers.svelte
index 8e5827a..b0f4f6d 100644
--- a/frontend/src/pages/Volunteers.svelte
+++ b/frontend/src/pages/Volunteers.svelte
@@ -271,6 +271,6 @@
@media (max-width: 640px) {
.td-name { width: 100%; }
.td-ready { width: 100%; }
- .td-actions { width: 100%; }
+ .td-actions { width: 100%; display: flex; justify-content: flex-end; }
}
|