style: add option background for InputSelect (#2188)

This commit is contained in:
Dave 2021-06-08 06:04:01 +04:30 committed by GitHub
parent e0fb76cb63
commit 4a8d357084
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -16,6 +16,10 @@ const Select = styled.select`
color: ${(props) => props.theme.text};
height: 30px;
option {
background: ${(props) => props.theme.buttonNeutralBackground};
}
&:disabled,
&::placeholder {
color: ${(props) => props.theme.placeholder};