Login:Components:PasswordChangeForm: remove styles

This commit is contained in:
Darya Umrikhina 2024-08-01 15:16:00 +04:00
parent b803969e4c
commit 232769d26d
2 changed files with 2 additions and 80 deletions

View File

@ -1,76 +0,0 @@
// (c) Copyright Ascensio System SIA 2009-2024
//
// This program is a free software product.
// You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights.
//
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
//
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
//
// The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
//
// Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks.
//
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
"use client";
import styled from "styled-components";
import { mobile, tablet } from "@docspace/shared/utils/device";
import { getCorrectFourValuesStyle } from "@docspace/shared/utils";
export const PasswordChangeWrapper = styled.div`
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
width: 100%;
margin: 0;
max-width: 960px;
box-sizing: border-box;
@media ${tablet} {
padding: 0 16px;
}
@media ${mobile} {
width: 100%;
padding: ${({ theme }) =>
getCorrectFourValuesStyle("32px 8px 0 16px", theme.interfaceDirection)};
.language-combo-box {
display: none;
}
}
.subtitle {
margin-bottom: 32px;
}
.password-form {
width: 100%;
margin-bottom: 8px;
}
.password-field-wrapper {
min-width: 100%;
}
.language-combo-box {
position: absolute;
right: 28px;
top: 28px;
}
`;

View File

@ -45,8 +45,6 @@ import { changePassword } from "@/utils/actions";
import { TError, WithLoaderProps } from "@/types";
import { ConfirmRouteContext } from "../ConfirmRoute";
import { PasswordChangeWrapper } from "./PasswordChangeForm.styled";
type PasswordChangeFormProps = {
passwordHash: TPasswordHash;
} & WithLoaderProps;
@ -143,7 +141,7 @@ const PasswordChangeForm = ({
};
return (
<PasswordChangeWrapper>
<>
<div className="password-form">
<Text fontSize="16px" fontWeight="600" className="subtitle">
{t("PassworResetTitle")}
@ -196,7 +194,7 @@ const PasswordChangeForm = ({
onClick={onSubmit}
isDisabled={isLoading}
/>
</PasswordChangeWrapper>
</>
);
};