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

View File

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