Skip to content

Commit

Permalink
Tweak dark mode colours on the booking success screen (Fixes #864) (#865
Browse files Browse the repository at this point in the history
)
  • Loading branch information
MelissaAutumn authored Feb 12, 2025
1 parent 8f8d405 commit 1ee54d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/components/bookingView/BookingViewSuccess.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ defineProps<Props>();
<span v-if="requested">{{ t('info.bookingSuccessfullyRequested') }}</span>
<span v-else>{{ t('info.bookingSuccessfullyConfirmed') }}</span>
</div>
<div class="flex w-full max-w-sm flex-col gap-1 rounded-lg shadow-lg">
<div class="flex w-full max-w-sm flex-col gap-1 rounded-lg shadow-lg dark:bg-gray-800">
<div class="flex h-14 items-center justify-around rounded-t-md bg-teal-500">
<div v-for="i in 2" :key="i" class="size-4 rounded-full bg-white"></div>
<div v-for="i in 2" :key="i" class="size-4 rounded-full bg-white dark:bg-gray-600"></div>
</div>
<div class="m-2 text-center text-2xl font-bold text-gray-500">
<div class="m-2 text-center text-2xl font-bold text-gray-500 dark:text-gray-300">
{{ selectedEvent.title }}
</div>
<div class="m-2 flex flex-col gap-0.5 rounded-md bg-gray-100 py-2 text-center text-gray-500">
<div class="m-2 flex flex-col gap-0.5 rounded-md bg-gray-100 py-2 text-center text-gray-500 dark:bg-gray-700 dark:text-gray-300">
<div class="text-sm font-semibold text-teal-500">{{ dj(selectedEvent.start).format('dddd') }}</div>
<div class="text-lg">{{ dj(selectedEvent.start).format('LL') }}</div>
<div class="flex-center gap-2 text-sm uppercase">
Expand Down

0 comments on commit 1ee54d5

Please sign in to comment.