File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/components/CompensationCalculator Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ export const Combobox = (props: ComboboxProps) => {
8484 leaveFrom = "opacity-100"
8585 leaveTo = "opacity-0"
8686 >
87- < HeadlessCombobox . Options className = "absolute top-full mt-1 w-full bg-white rounded p-0 z-[50] text-sm max-h-[12rem] overflow-y-scroll py-1 focus:outline-none space-y-1 shadow-xl border border-black/10" >
87+ < HeadlessCombobox . Options className = "absolute top-full mt-1 w-full bg-white dark:bg-accent-dark dark:text-primary-dark rounded p-0 z-[50] text-sm max-h-[12rem] overflow-y-scroll py-1 focus:outline-none space-y-1 shadow-xl border border-black/10" >
8888 { filteredOptions . length === 0 && query !== '' ? (
8989 < div className = "px-2.5 py-1 text-sm text-gray" > No results</ div >
9090 ) : (
Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ export const CompensationCalculator = ({
208208 < Section title = "Level" description = { descriptions [ 'level' ] && descriptions [ 'level' ] } >
209209 { breakpoints . sm ? (
210210 < RadioGroup as = "div" className = "block" value = { level } onChange = { setItem ( 'level' ) } >
211- < div className = "w-full inline-flex flex-col items-stretch md:flex-row md:items-center bg-white rounded divide-y md:divide-y-0 md:divide-x divide-black/10 overflow-hidden shadow-sm border border-black/10 text-sm mt-1.5" >
211+ < div className = "w-full inline-flex flex-col items-stretch md:flex-row md:items-center bg-white dark:bg-accent-dark rounded divide-y md:divide-y-0 md:divide-x divide-black/10 overflow-hidden shadow-sm border border-black/10 text-sm mt-1.5" >
212212 { Object . entries ( levelModifier ) . map ( ( [ level , modifier ] ) => (
213213 < RadioGroup . Option
214214 as = "button"
You can’t perform that action at this time.
0 commit comments