Web: Client: Invitepanel: fix email color

This commit is contained in:
Elyor Djalilov 2023-11-02 16:08:37 +05:00
parent 210e75a556
commit a341fc7e35
3 changed files with 3 additions and 1 deletions

View File

@ -298,7 +298,7 @@ const SearchItemText = styled(Text)`
color: ${(props) =>
(props.primary && !props.disabled) || props.info
? props.theme.text.color
: props.theme.text.disableColor};
: props.theme.text.emailColor};
${(props) => props.info && `margin-left: auto`}
`;

View File

@ -68,6 +68,7 @@ const Base = {
text: {
color: black,
disableColor: gray,
emailColor: "#a3a9ae",
fontWeight: "normal",
fontWeightBold: "bold",
},

View File

@ -62,6 +62,7 @@ const Dark = {
text: {
color: grayMaxLight,
disableColor: "#5c5c5c",
emailColor: "#a3a9ae",
fontWeight: "normal",
fontWeightBold: "bold",
},