fix(FE): fixing dashboard select input UI component

This commit is contained in:
randy-ar
2026-01-21 15:18:37 +07:00
parent c7ffae68d8
commit 9a1be88bce
3 changed files with 131 additions and 70 deletions
+6
View File
@@ -312,6 +312,12 @@ const SelectInput = <T extends OptionType>(props: SelectInputProps<T>) => {
}
styles={{
menuPortal: (base) => ({ ...base, zIndex: 9999 }),
multiValue(base) {
return {
...base,
borderRadius: '8px',
};
},
}}
onMenuScrollToBottom={onMenuScrollToBottom}
/>
+1 -1
View File
@@ -40,7 +40,7 @@ const CheckboxOption = <
type='checkbox'
checked={isSelected}
onChange={() => null}
className='checkbox checkbox-sm checkbox-primary pointer-events-none'
className='checkbox checkbox-sm rounded checkbox-primary pointer-events-none'
/>
<label className='cursor-pointer flex-1 select-none'>{label}</label>
</div>