diff --git a/src-web/components/core/Select.tsx b/src-web/components/core/Select.tsx index 32217c4e..de8d7690 100644 --- a/src-web/components/core/Select.tsx +++ b/src-web/components/core/Select.tsx @@ -88,11 +88,11 @@ export function Select({ onChange={(e) => handleChange(e.target.value as T)} onFocus={() => setFocused(true)} onBlur={() => setFocused(false)} + disabled={disabled} className={classNames( 'pr-7 w-full outline-none bg-transparent disabled:opacity-disabled', - 'leading-[1]', // Center the text better vertically + 'leading-[1] rounded-none', // Center the text better vertically )} - disabled={disabled} > {isInvalidSelection && } {options.map((o) => {