Web: Client: Settings: fix width

This commit is contained in:
Viktor Fomin 2022-04-08 16:12:34 +03:00
parent b2d162b630
commit f835484454
2 changed files with 5 additions and 2 deletions

View File

@ -197,7 +197,6 @@ const TrustedMail = (props) => {
{type === "1" && (
<UserFields
className="user-fields"
inputs={domains}
buttonLabel={t("AddTrustedDomain")}
onChangeInput={onChangeInput}

View File

@ -27,7 +27,11 @@ const StyledInputWrapper = styled.div`
gap: 10px;
align-items: center;
margin-bottom: 8px;
width: 370px;
width: 350px;
@media (max-width: 375px) {
width: 100%;
}
`;
const StyledAddWrapper = styled.div`