ui(activities): center the tickets-remaining line on detail page
Was left-aligned alone on its row above the owned + buy blocks, which read as visually orphaned. Adding `justify-center` aligns it with how the line reads as a status pill — same alignment the buy CTA below uses. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
4415e01083
commit
cd2b1f2020
1 changed files with 1 additions and 1 deletions
|
|
@ -278,7 +278,7 @@ function goToMyTickets() {
|
|||
tickets (when count > 0) above a Purchase CTA (when
|
||||
capacity remains). -->
|
||||
<div v-if="activity.ticketInfo" class="space-y-3">
|
||||
<div class="flex items-center gap-1.5 text-sm text-muted-foreground">
|
||||
<div class="flex items-center justify-center gap-1.5 text-sm text-muted-foreground">
|
||||
<Ticket class="w-4 h-4 shrink-0" />
|
||||
<span v-if="activity.ticketInfo.available === undefined">
|
||||
{{ t('activities.detail.unlimitedTickets', 'Unlimited tickets') }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue