diff --git a/interface/src/index.tsx b/interface/src/index.tsx index 0f7ee572c..37f0bb676 100644 --- a/interface/src/index.tsx +++ b/interface/src/index.tsx @@ -23,12 +23,12 @@ const errorPageStyles = { color: '#eee' }, logo: { - width: '120px', - height: '120px', + width: '100px', + height: '100px', marginBottom: '2rem' }, title: { - fontSize: '3rem', + fontSize: '2rem', margin: '0 0 1rem 0', color: '#90CAF9', fontWeight: 500 as const @@ -40,10 +40,17 @@ const errorPageStyles = { margin: '0 0 1rem 0' }, message: { + fontFamily: 'monospace, monospace', fontSize: '1.1rem', color: '#9e9e9e', maxWidth: '600px', margin: '0 0 2rem 0' + }, + message2: { + fontSize: '1.1rem', + color: '#2196f3', + maxWidth: '600px', + margin: '0 0 2rem 0' } }; interface ErrorWithStatus { @@ -77,9 +84,21 @@ function ErrorPage() { return (
EMS-ESP Logo -

WebUI broke!

-

{getErrorStatus(error)}

-

{getErrorMessage(error)}

+

The WebUI is having problems

+

+ {getErrorStatus(error)}: {getErrorMessage(error)} +

+

+ Please report on{' '} + + https://docs.emsesp.org/Support + +

); }