From 7593ab4a4e40fe91c8e0b3f6602d12bee964f789 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Tue, 11 Oct 2022 04:42:59 -0400 Subject: [PATCH] ErrorPage: Fix position of chunk loading error (#56473) (#56628) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 03e887723a57b557d596f996f70b1c9957a26824) Co-authored-by: Torkel Ödegaard --- public/app/core/navigation/GrafanaRouteError.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/app/core/navigation/GrafanaRouteError.tsx b/public/app/core/navigation/GrafanaRouteError.tsx index 97d0d4eb36c..e0eba15da70 100644 --- a/public/app/core/navigation/GrafanaRouteError.tsx +++ b/public/app/core/navigation/GrafanaRouteError.tsx @@ -51,5 +51,8 @@ export function GrafanaRouteError({ error, errorInfo }: Props) { } const getStyles = stylesFactory(() => { - return css``; + return css` + width: 500px; + margin: 64px auto; + `; });