diff --git a/index.html b/index.html index d2dffc55e..5cb84d49c 100644 --- a/index.html +++ b/index.html @@ -29,7 +29,7 @@ --loader-fg: 32, 33, 36; } body { margin: 0; background: var(--loader-bg); } - #loader { + #boot-splash { position: fixed; inset: 0; display: flex; @@ -38,11 +38,9 @@ z-index: 9999; color: rgb(var(--loader-fg)); background: var(--loader-bg); - transition: opacity 0.3s; } - #loader.fade-out { opacity: 0; pointer-events: none; } - #loader svg { width: 32px; height: 32px; opacity: 0.45; } - #loader .bar { + #boot-splash svg { width: 32px; height: 32px; opacity: 0.45; } + #boot-splash .bar { position: absolute; bottom: 50%; left: 50%; @@ -53,7 +51,7 @@ border-radius: 1px; overflow: hidden; } - #loader .bar::after { + #boot-splash .bar::after { content: ''; display: block; height: 100%; @@ -70,13 +68,14 @@
-