Additional fixes

dark
Bailey Pumfleet 2021-11-30 11:02:37 +00:00
parent 723fc8385f
commit eaf7d7347f
2 changed files with 5 additions and 5 deletions

View File

@ -62,7 +62,7 @@ export function AvailabilityForm(props: inferQueryOutput<"viewer.availability">)
</div>
</Form>
<div className="col-span-3 ml-2 lg:col-span-1 min-w-40">
<div className="px-4 py-5 border border-gray-200 rounded-sm sm:p-6 ">
<div className="px-4 py-5 border border-gray-200 rounded-sm sm:p-6 dark:border-gray-500">
<h3 className="text-base font-medium leading-6 text-gray-900 dark:text-white">
{t("something_doesnt_look_right")}
</h3>

View File

@ -308,7 +308,7 @@ function SettingsView(props: ComponentProps<typeof Settings> & { localeProp: str
value={selectedLanguage || props.localeProp}
onChange={setSelectedLanguage}
classNamePrefix="react-select"
className="block w-full mt-1 capitalize border border-gray-300 rounded-sm shadow-sm react-select-container focus:ring-neutral-500 focus:border-neutral-500 sm:text-sm"
className="block w-full mt-1 capitalize rounded-sm shadow-sm react-select-container focus:ring-neutral-500 focus:border-neutral-500 sm:text-sm"
options={localeOptions}
/>
</div>
@ -325,7 +325,7 @@ function SettingsView(props: ComponentProps<typeof Settings> & { localeProp: str
value={selectedTimeZone}
onChange={setSelectedTimeZone}
classNamePrefix="react-select"
className="block w-full mt-1 border border-gray-300 rounded-sm shadow-sm react-select-container focus:ring-neutral-500 focus:border-neutral-500 sm:text-sm"
className="block w-full mt-1 rounded-sm shadow-sm react-select-container focus:ring-neutral-500 focus:border-neutral-500 sm:text-sm"
/>
</div>
</div>
@ -341,7 +341,7 @@ function SettingsView(props: ComponentProps<typeof Settings> & { localeProp: str
value={selectedWeekStartDay}
onChange={setSelectedWeekStartDay}
classNamePrefix="react-select"
className="block w-full mt-1 capitalize border border-gray-300 rounded-sm shadow-sm react-select-container focus:ring-neutral-500 focus:border-neutral-500 sm:text-sm"
className="block w-full mt-1 capitalize rounded-sm shadow-sm react-select-container focus:ring-neutral-500 focus:border-neutral-500 sm:text-sm"
options={[
{ value: "Sunday", label: nameOfDay(props.localeProp, 0) },
{ value: "Monday", label: nameOfDay(props.localeProp, 1) },
@ -360,7 +360,7 @@ function SettingsView(props: ComponentProps<typeof Settings> & { localeProp: str
defaultValue={selectedTheme || themeOptions[0]}
value={selectedTheme || themeOptions[0]}
onChange={setSelectedTheme}
className="shadow-sm | { value: string } focus:ring-neutral-500 focus:border-neutral-500 mt-1 block w-full sm:text-sm border-gray-300 rounded-sm"
className="shadow-sm | { value: string } focus:ring-neutral-500 focus:border-neutral-500 mt-1 block w-full sm:text-sm rounded-sm"
options={themeOptions}
/>
</div>