diff --git a/packages/ui-templates/templates/loading/index.html b/packages/ui-templates/templates/loading/index.html index 276777165e..440235b52f 100644 --- a/packages/ui-templates/templates/loading/index.html +++ b/packages/ui-templates/templates/loading/index.html @@ -33,6 +33,17 @@ filter: blur(100px); opacity: 0.5; } + #animation-toggle { + position: fixed; + padding: 10px; + top: 0; + right: 0; + transition: opacity 0.4s ease-in; + opacity: 0; + } + #animation-toggle:hover { + opacity: 0.8; + } @keyframes gradient { 0% { background-position: 0 0; @@ -53,6 +64,10 @@ } } @media (prefers-color-scheme: dark) { + html, body { + color: white; + color-scheme: dark; + } #nuxtImageDigit3 { fill: #00DC82 !important; } @@ -66,24 +81,24 @@
+
@@ -92,23 +107,38 @@