diff --git a/apps/client/src/setup.css b/apps/client/src/setup.css index 3bf66a3fb9..5b99aa97a7 100644 --- a/apps/client/src/setup.css +++ b/apps/client/src/setup.css @@ -109,4 +109,43 @@ body.setup { } } } + + .lds-ring { + display: inline-block; + position: relative; + width: 60px; + height: 60px; + + &>div { + box-sizing: border-box; + display: block; + position: absolute; + width: var(--size, 48px); + height: var(--size, 48px); + margin: 8px; + border: 6px solid black; + border-radius: 50%; + animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; + border-color: black transparent transparent transparent; + + &:nth-child(1) { + animation-delay: -0.45s; + } + &:nth-child(2) { + animation-delay: -0.3s; + } + &:nth-child(3) { + animation-delay: -0.15s; + } + } + } +} + +@keyframes lds-ring { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } } diff --git a/apps/client/src/setup.tsx b/apps/client/src/setup.tsx index e7f6408f96..2c784a8022 100644 --- a/apps/client/src/setup.tsx +++ b/apps/client/src/setup.tsx @@ -74,10 +74,21 @@ function SyncInProgress() {
{t("setup.sync-in-progress-description")}
+<%= t("setup.redirecting") %>