chore: add rounded class

This commit is contained in:
원더 2021-02-01 21:33:57 +09:00
parent 192534b14f
commit d537fa77ed
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ const Select = ({ placeholder, options, handleChange, handleTouch }:SelectProps)
opacity: '0.7'
} }
}
}} className='border border-grey-light dark:border-transparent' classNamePrefix='outline-none text-black dark:bg-very-black dark:text-white ' placeholder={placeholder || '선택해주세요.'} options={options} onChange={handleChange} onBlur={handleTouch} noOptionsMessage={() => '검색 결과가 없습니다.'}/>
}} className='border border-grey-light dark:border-transparent rounded' classNamePrefix='outline-none text-black dark:bg-very-black dark:text-white ' placeholder={placeholder || '선택해주세요.'} options={options} onChange={handleChange} onBlur={handleTouch} noOptionsMessage={() => '검색 결과가 없습니다.'}/>
}
interface SelectProps {

View File

@ -10,7 +10,7 @@ const Select = ({ placeholder, options, handleChange, handleTouch }:SelectProps)
opacity: '0.7'
} }
}
}} isMulti className='border border-grey-light dark:border-transparent' classNamePrefix='outline-none text-black dark:bg-very-black dark:text-white cursor-pointer ' placeholder={placeholder || '선택해주세요.'} options={options} onChange={handleChange} onBlur={handleTouch} noOptionsMessage={() => '검색 결과가 없습니다.'}/>
}} isMulti className='border border-grey-light dark:border-transparent rounded' classNamePrefix='outline-none text-black dark:bg-very-black dark:text-white cursor-pointer ' placeholder={placeholder || '선택해주세요.'} options={options} onChange={handleChange} onBlur={handleTouch} noOptionsMessage={() => '검색 결과가 없습니다.'}/>
}
interface SelectProps {