From 4d4545e229b39d5a26a17a38ba72ff513bb0aafd Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Fri, 29 Oct 2021 08:33:21 +1300 Subject: [PATCH] Adding loading message to handle load issues --- src/index.html | 42 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/src/index.html b/src/index.html index 7f0e5f7d..70a232eb 100755 --- a/src/index.html +++ b/src/index.html @@ -64,7 +64,7 @@ max-width: 100px; opacity: 0.25; } - #app-loading-loader { + #app-loading-loader.loading { position: relative; margin: 30px auto 0; width: 80vw; @@ -74,7 +74,7 @@ overflow: hidden; background-color: #1A1A1A; } - #app-loading-loader::before { + #app-loading-loader.loading::before { position: absolute; display: block; content: ''; @@ -85,6 +85,13 @@ animation-timing-function: ease-in-out; animation-iteration-count: infinite; } + #app-loading-message { + color: white; + font-family: Arial, Helvetica, sans-serif; + font-size: 12px; + padding: 10px; + opacity: 0.5; + } @@ -95,6 +102,7 @@
+
@@ -112,6 +120,18 @@