Skip to content

Commit

Permalink
Fix login text size to accommodate Storpool text
Browse files Browse the repository at this point in the history
  • Loading branch information
Nickola Trupcheff committed Jan 10, 2024
1 parent 8b8370f commit 1f9efad
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions public/app/core/components/Login/LoginLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ export const LoginLayout = ({ children, branding, isChangingPassword }: React.Pr
const loginBoxBackground = branding?.loginBoxBackground || Branding.LoginBoxBackground();
const loginLogo = branding?.loginLogo;
const hideEdition = branding?.hideEdition ?? Branding.HideEdition;
const d = new Date();
const year = d.getFullYear();

useEffect(() => setStartAnim(true), []);

Expand Down Expand Up @@ -132,7 +130,7 @@ export const getLoginStyles = (theme: GrafanaTheme2) => {
fontSize: 22,

[theme.breakpoints.up('sm')]: {
fontSize: 32,
fontSize: 22,
},
}),
subTitle: css({
Expand Down Expand Up @@ -180,9 +178,5 @@ export const getLoginStyles = (theme: GrafanaTheme2) => {
enterAnimation: css({
animation: `${flyInAnimation} ease-out 0.2s`,
}),
spCopyright: css`
margin-top: 20px;
font-size: 12px;
`,
};
};

0 comments on commit 1f9efad

Please sign in to comment.