Client: use colors from theme

This commit is contained in:
Viktor Fomin 2024-06-25 18:18:14 +03:00
parent 30ff7887b6
commit 5b9dccaa54
2 changed files with 2 additions and 2 deletions

View File

@ -240,7 +240,7 @@ const StyledInviteInput = styled.div`
}
display: flex;
border: 1px solid rgb(208, 213, 218);
border: ${(props) => props.theme.filesPanels.invite.border};
border-radius: 3px;
.copy-link-icon {

View File

@ -314,7 +314,7 @@ export const StyledInfo = styled.div`
font-size: 12px !important;
line-height: 16px !important;
white-space: nowrap;
color: rgb(163, 169, 174);
color: ${(props) => props.theme.profile.main.mobileLabel};
}
.mobile-profile-label-field {