diff --git a/apps/web/components/booking/pages/BookingPage.tsx b/apps/web/components/booking/pages/BookingPage.tsx index f2983aef59..9e1e38b4e3 100644 --- a/apps/web/components/booking/pages/BookingPage.tsx +++ b/apps/web/components/booking/pages/BookingPage.tsx @@ -344,7 +344,7 @@ const BookingPage = (props: BookingPageProps) => { name="name" id="name" required - className="focus:border-brand block w-full rounded-sm border-gray-300 shadow-sm focus:ring-black dark:border-gray-900 dark:bg-black dark:text-white sm:text-sm" + className="focus:border-brand block w-full rounded-sm border-gray-300 shadow-sm focus:ring-black dark:border-gray-900 dark:bg-black dark:text-white dark:selection:bg-green-500 sm:text-sm" placeholder={t("example_name")} /> @@ -359,7 +359,7 @@ const BookingPage = (props: BookingPageProps) => { @@ -422,7 +422,7 @@ const BookingPage = (props: BookingPageProps) => { })} id={"custom_" + input.id} rows={3} - className="focus:border-brand block w-full rounded-sm border-gray-300 shadow-sm focus:ring-black dark:border-gray-900 dark:bg-black dark:text-white sm:text-sm" + className="focus:border-brand block w-full rounded-sm border-gray-300 shadow-sm focus:ring-black dark:border-gray-900 dark:bg-black dark:text-white dark:selection:bg-green-500 sm:text-sm" placeholder={input.placeholder} /> )} @@ -433,7 +433,7 @@ const BookingPage = (props: BookingPageProps) => { required: input.required, })} id={"custom_" + input.id} - className="focus:border-brand block w-full rounded-sm border-gray-300 shadow-sm focus:ring-black dark:border-gray-900 dark:bg-black dark:text-white sm:text-sm" + className="focus:border-brand block w-full rounded-sm border-gray-300 shadow-sm focus:ring-black dark:border-gray-900 dark:bg-black dark:text-white dark:selection:bg-green-500 sm:text-sm" placeholder={input.placeholder} /> )} @@ -444,7 +444,7 @@ const BookingPage = (props: BookingPageProps) => { required: input.required, })} id={"custom_" + input.id} - className="focus:border-brand block w-full rounded-sm border-gray-300 shadow-sm focus:ring-black dark:border-gray-900 dark:bg-black dark:text-white sm:text-sm" + className="focus:border-brand block w-full rounded-sm border-gray-300 shadow-sm focus:ring-black dark:border-gray-900 dark:bg-black dark:text-white dark:selection:bg-green-500 sm:text-sm" placeholder="" /> )} @@ -526,7 +526,7 @@ const BookingPage = (props: BookingPageProps) => { {...bookingForm.register("notes")} id="notes" rows={3} - className="focus:border-brand block w-full rounded-sm border-gray-300 shadow-sm focus:ring-black dark:border-gray-900 dark:bg-black dark:text-white sm:text-sm" + className="focus:border-brand block w-full rounded-sm border-gray-300 shadow-sm focus:ring-black dark:border-gray-900 dark:bg-black dark:text-white dark:selection:bg-green-500 sm:text-sm" placeholder={t("share_additional_notes")} />