LoginLayout: Remove hardcoded background-color (#52505)

pull/52583/head^2
Alex Khomenko 3 years ago committed by GitHub
parent 5b275ca3f5
commit c7f8c2a7e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      public/app/core/components/Login/LoginLayout.tsx

@ -51,14 +51,11 @@ to{
}`;
export const getLoginStyles = (theme: GrafanaTheme2) => {
const bgColor = theme.isDark ? '#000' : theme.colors.background.canvas;
return {
container: css({
minHeight: '100%',
backgroundPosition: 'center',
backgroundRepeat: 'no-repeat',
backgroundColor: bgColor,
minWidth: '100%',
marginLeft: 0,
display: 'flex',

Loading…
Cancel
Save