Skip to content

Commit

Permalink
Merge pull request #117 from Goldenrash-lab/balance-vf
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldenrash-lab authored Jan 16, 2024
2 parents bbb54a0 + 393728e commit 0dfb34d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/components/LoginForm/LoginFormStyded.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ export const Eye = styled.button`
right: 5px;
background-color: transparent;
border: none;
cursor: pointer;
`;

export const LoginNavLink = styled(NavLink)`
Expand Down
2 changes: 1 addition & 1 deletion src/components/RegistrationForm/RegistrationForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const RegistrationForm = () => {
<WrapperForm>
<TestDiv />
<WrapperLogo>
<div>{!mobileQuery ? <Logo width="25" height="25" /> : <Logo />}</div>
<div>{!mobileQuery ? <Logo width="36" height="36" /> : <Logo />}</div>
<TextLogo>Money Guard</TextLogo>
</WrapperLogo>
<Form onSubmit={handleSubmit(submit)}>
Expand Down
5 changes: 3 additions & 2 deletions src/components/RegistrationForm/RegistrationForm.styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const Button = styled.button`
background: ${props =>
props.$gradient ? 'var(--button-gradient)' : 'var(--white)'};
box-shadow: 1px 9px 15px 0px rgba(0, 0, 0, 0.2);
padding: 13px 68px;
padding: 13px 55px;
color: ${props => (props.$gradient ? '#fff' : 'var(--button-text-color)')};
text-align: center;
Expand Down Expand Up @@ -111,6 +111,7 @@ export const Eye = styled.button`
right: 5px;
background-color: transparent;
border: none;
cursor: pointer;
`;

export const InputWrapper = styled.div`
Expand All @@ -131,7 +132,7 @@ export const TestDiv = styled.div`
}
`;
export const ErrorText = styled.p`
color: #ff868d;
color: #ff868d;
font-size: 14px;
padding-left: 30px;
Expand Down

0 comments on commit 0dfb34d

Please sign in to comment.