Forgot password: Fix styling (#26002)

This commit is contained in:
Alex Khomenko
2020-07-02 10:33:45 +03:00
committed by GitHub
parent ab172f09b2
commit 9e47114c45
2 changed files with 4 additions and 3 deletions

View File

@@ -45,7 +45,7 @@ export const ForgottenPassword: FC = () => {
<Legend>Reset password</Legend>
<Field
label="User"
description="Enter your informaton to get a reset link sent to you"
description="Enter your information to get a reset link sent to you"
invalid={!!errors.userOrEmail}
error={errors?.userOrEmail?.message}
>

View File

@@ -49,10 +49,11 @@ export const getLoginStyles = (theme: GrafanaTheme) => {
min-height: 100vh;
background-position: center;
background-repeat: no-repeat;
background-color: ${theme.palette.black};
min-width: 100%;
margin-left: 0;
background-color: $black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
`,
@@ -76,7 +77,7 @@ export const getLoginStyles = (theme: GrafanaTheme) => {
text-align: center;
`,
mainTitle: css`
font-size: '32px';
font-size: 32px;
`,
subTitle: css`
font-size: ${theme.typography.size.md};