Components: CodeInput: fix style

This commit is contained in:
Viktor Fomin 2022-11-16 00:53:24 +05:00
parent 5a9c9f20d2
commit 87e40e9346

View File

@ -42,9 +42,9 @@ const InputWrapper = styled.div`
}
input:disabled {
color: ${(props) => props.theme.codeInput.disabledColor}
background: ${(props) => props.theme.codeInput.disabledBackground}
border: 1px solid ${(props) => props.theme.codeInput.disabledBorder}
color: ${(props) => props.theme.codeInput.disabledColor};
background: ${(props) => props.theme.codeInput.disabledBackground};
border: ${(props) => props.theme.codeInput.disabledBorder};
outline: none;
}