fix: update bg color variable name in MemberManager
This commit is contained in:
parent
b5fd3b1bf1
commit
f732b211c9
@ -20,14 +20,14 @@ export const MemberManagerSearch = styled(TextareaAutosize)`
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
|
||||||
background: ${props => props.theme.colors.bgColor.secondary};
|
background: ${props => props.theme.colors.bg.secondary};
|
||||||
outline: none;
|
outline: none;
|
||||||
color: ${props => props.theme.colors.text.primary};
|
color: ${props => props.theme.colors.text.primary};
|
||||||
border-color: ${props => props.theme.colors.border};
|
border-color: ${props => props.theme.colors.border};
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
box-shadow: ${props => props.theme.colors.primary} 0px 0px 0px 1px;
|
box-shadow: ${props => props.theme.colors.primary} 0px 0px 0px 1px;
|
||||||
background: ${props => mixin.darken(props.theme.colors.bgColor.secondary, 0.15)};
|
background: ${props => mixin.darken(props.theme.colors.bg.secondary, 0.15)};
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user