Skip to content

Commit

Permalink
Dark mode fixes for GA Redesign
Browse files Browse the repository at this point in the history
  • Loading branch information
MelissaAutumn committed Apr 19, 2024
1 parent 907bef3 commit 626524f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions frontend/src/components/ScheduleCreation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
v-model="scheduleInput.name"
:placeholder="t('placeholder.mySchedule')"
:disabled="!scheduleInput.active"
class="place-holder w-full rounded-none border-0 border-b bg-transparent px-0"
class="place-holder w-full rounded-none border-0 border-b bg-transparent px-0 dark:bg-transparent"
required
/>
</label>
</div>
<!-- step 1 -->
<div
class="mx-4 flex flex-col gap-2 rounded-lg border border-zinc-200 p-4 text-gray-700 dark:bg-gray-600 dark:text-gray-100"
class="mx-4 flex flex-col gap-2 rounded-lg border border-zinc-200 p-4 text-gray-700 dark:border-gray-500 dark:bg-gray-600 dark:text-gray-100"
:class="{'bg-neutral-50': activeStep1}"
id="schedule-availability"
>
Expand Down Expand Up @@ -99,7 +99,7 @@
</div>
<!-- step 2 -->
<div
class="mx-4 flex flex-col gap-2 rounded-lg border border-zinc-200 p-4 text-gray-700 dark:bg-gray-600 dark:text-gray-100"
class="mx-4 flex flex-col gap-2 rounded-lg border border-zinc-200 p-4 text-gray-700 dark:border-gray-500 dark:bg-gray-600 dark:text-gray-100"
:class="{'bg-neutral-50':activeStep2}"
id="schedule-settings"
>
Expand Down Expand Up @@ -207,7 +207,7 @@
<!-- step 3 -->
<div
@click="state = scheduleCreationState.details"
class="mx-4 flex flex-col gap-2 rounded-lg border border-zinc-200 p-4 text-gray-700 dark:bg-gray-600 dark:text-gray-100"
class="mx-4 flex flex-col gap-2 rounded-lg border border-zinc-200 p-4 text-gray-700 dark:border-gray-500 dark:bg-gray-600 dark:text-gray-100"
:class="{'bg-neutral-50': activeStep3}"
id="schedule-details"
>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/ScheduleView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
:class="{ 'lg:mt-10': tabActive === calendarViews.month }"
>
<!-- schedule creation dialog -->
<div class="mx-auto mb-10 w-3/4 min-w-[20rem] rounded-2xl bg-zinc-100 sm:w-1/4 md:mb-0 xl:w-1/6">
<div class="mx-auto mb-10 w-3/4 min-w-[20rem] rounded-2xl bg-zinc-100 dark:bg-gray-600 sm:w-1/4 md:mb-0 xl:w-1/6">
<schedule-creation
v-if="schedulesReady"
:calendars="connectedCalendars"
Expand Down

0 comments on commit 626524f

Please sign in to comment.