diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-18 03:54:07 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-18 03:54:07 +0300 |
commit | 046c9af4b34cf572ae834cf6745990828fddcfa2 (patch) | |
tree | d5ffaefe781e530c70f98e0a05ffb2f8883096fc /src/components/Select.tsx | |
parent | 5ac1a56a157dc116fd61712ac47c29e6d02f4c0c (diff) | |
download | commercel-ui-046c9af4b34cf572ae834cf6745990828fddcfa2.tar.gz |
feat: improve components style
Diffstat (limited to 'src/components/Select.tsx')
-rw-r--r-- | src/components/Select.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/components/Select.tsx b/src/components/Select.tsx index 595208d..6b04e20 100644 --- a/src/components/Select.tsx +++ b/src/components/Select.tsx @@ -11,14 +11,17 @@ export interface Props extends React.SelectHTMLAttributes<HTMLSelectElement> { options: Option[]; } +const focusStyles = 'focus:outline-none focus:shadow focus:border-gray-400'; +const baseStyles = 'p-2 border bg-white border-gray-300 rounded-sm'; + const SelectBase: React.FC<Props> = ({ label, options, ...props }) => { return ( <div className="m-2 mb-4 flex flex-col"> - <label htmlFor={props?.name} className="mb-1 text-gray-700">{label}</label> + <label htmlFor={props?.name} className="mb-1 text-sm text-gray-600">{label}</label> <select id={props?.name} placeholder={label} - className="p-2 border-2 border-black bg-white focus:outline-none" + className={`${baseStyles} ${focusStyles}`} {...props} > {options?.map(option => ( |