diff --git a/public/app/core/components/Login/LoginLayout.tsx b/public/app/core/components/Login/LoginLayout.tsx index 8d18f498c4..c0818a56be 100644 --- a/public/app/core/components/Login/LoginLayout.tsx +++ b/public/app/core/components/Login/LoginLayout.tsx @@ -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), []); @@ -132,7 +130,7 @@ export const getLoginStyles = (theme: GrafanaTheme2) => { fontSize: 22, [theme.breakpoints.up('sm')]: { - fontSize: 32, + fontSize: 22, }, }), subTitle: css({ @@ -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; - `, }; };