Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

auth #348

Merged
merged 1 commit into from
Mar 28, 2024
Merged

auth #348

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/organisms/LoginForm/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const StyledDiv = styled.div<{ mobile: boolean }>`

form {
width: 100%;
max-width: 440px;
min-width: ${({ mobile }) => (mobile ? "100%" : "440px")};
margin-bottom: 15px;
}
> button {
Expand Down
2 changes: 1 addition & 1 deletion src/components/organisms/RegisterForm/RegisterForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const StyledDiv = styled.div<{ mobile: boolean }>`
}
form {
width: 100%;
max-width: 440px;
min-width: ${({ mobile }) => (mobile ? "100%" : "440px")};
margin-bottom: 15px;
}
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const StyledDiv = styled.div<{ mobile: boolean }>`
}
form {
width: 100%;
min-width: 440px;
min-width: ${({ mobile }) => (mobile ? "100%" : "440px")};
margin-bottom: 15px;
}
`;
Expand Down
8 changes: 4 additions & 4 deletions src/styleguide/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const resources = {
Empty: "No new notifications",
},
Login: {
Header: "Log in to your Wellms account",
Header: "Log in",
Signin: "Log in",
NotRemember: "I forgot my password",
NoAccount: "No account?",
Expand All @@ -110,7 +110,7 @@ export const resources = {
NoRecords: "No records",
},
RegisterForm: {
Header: "Sign up for your Wellms account",
Header: "Sign up ",
Subtitle: "Many users have already trusted us",
"Already have an account": "Already have an account?",
},
Expand Down Expand Up @@ -348,7 +348,7 @@ export const resources = {
Empty: "Brak Nowych powiadomień",
},
Login: {
Header: "Zaloguj się do swojego konta Wellms",
Header: "Zaloguj się ",
Signin: "Zaloguj się",
NotRemember: "Nie pamiętam hasła",
NoAccount: "Nie posiadasz konta?",
Expand All @@ -364,7 +364,7 @@ export const resources = {
NoRecords: "Brak zamówień",
},
RegisterForm: {
Header: "Dołącz do Wellms, największej plaformy szkoleniowej!",
Header: "Zarejestruj się",
Subtitle: "Zaufało nam już sporo użytkowników",
"Already have an account": "Masz już konto?",
},
Expand Down
Loading