diff --git a/public/app/partials/error.html b/public/app/partials/error.html
index 0750e860dd5..a7c074fea94 100644
--- a/public/app/partials/error.html
+++ b/public/app/partials/error.html
@@ -1,55 +1,60 @@
-
-
-
-
-
-
-
-
-
-
100%
-
80%
-
60%
-
40%
-
20%
-
0%
-
-
-

-
-
-
-
-
-
-
-
-
-
-
Chances you are on the page you are looking for.
-
0%
-
-
-
Sorry for the inconvenience
-
Please go back to your home dashboard and try again.
-
If the error persists, seek help on the community site.
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
100%
+
80%
+
60%
+
40%
+
20%
+
0%
+
+
+

+
+
+
+
+
+
+
+
+
+
+
Chances you are on the page you are looking for.
+
0%
+
+
+
Sorry for the inconvenience
+
Please go back to your
+ home dashboard and try again.
+
If the error persists, seek help on the
+ community site.
+
+
+
+
+
+
diff --git a/public/sass/pages/_errorpage.scss b/public/sass/pages/_errorpage.scss
index e18306ea05a..dac2768e89b 100644
--- a/public/sass/pages/_errorpage.scss
+++ b/public/sass/pages/_errorpage.scss
@@ -3,6 +3,11 @@
// Layout
//
+.error-container {
+ display: flex;
+ flex-direction: row;
+}
+
.error-row {
display: flex;
flex-direction: row;
@@ -22,7 +27,7 @@
.info-box {
width: 38%;
- padding: 2rem 1rem 6rem;
+ padding: 2rem 1rem 2rem;
}
.graph-percentage {padding: 0 0 1.5rem;}
@@ -58,3 +63,31 @@
}
.graph-text {margin: 0;}
+
+@include media-breakpoint-down(sm) {
+ .graph-box {
+ width: 50%;
+ }
+
+ .info-box {
+ width: 50%;
+ }
+}
+
+@include media-breakpoint-down(xs) {
+ .error-container {
+ flex-direction: column;
+ }
+
+ .graph-box {
+ width: 100%;
+ }
+
+ .info-box {
+ width: 100%;
+ }
+
+ .error-full-width {
+ width: 100%;
+ }
+}