From 4a8d35708467123534e53efabc2aa79829aba00b Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 8 Jun 2021 06:04:01 +0430 Subject: [PATCH] style: add option background for InputSelect (#2188) --- app/components/InputSelect.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/components/InputSelect.js b/app/components/InputSelect.js index 83624b2f0..840be3953 100644 --- a/app/components/InputSelect.js +++ b/app/components/InputSelect.js @@ -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};