mirror of
https://github.com/bitwarden/browser
synced 2026-02-26 09:33:22 +00:00
more tiny fixes to the lock component and the index loading
This commit is contained in:
@@ -45,7 +45,7 @@
|
||||
<img class="new-logo-themed !tw-w-[200px]" alt="Bitwarden" />
|
||||
</a>
|
||||
<div class="spinner-container tw-justify-center">
|
||||
<span class="tw-inline-block tw-overflow-hidden tw-flex tw-items-center tw-h-16">
|
||||
<span class="tw-inline-block tw-overflow-hidden tw-items-center tw-h-16">
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 56 56"
|
||||
|
||||
@@ -4,6 +4,7 @@ import { getQsParam } from "./common";
|
||||
|
||||
window.addEventListener("load", () => {
|
||||
// Debug mode: keep the page static for styling/debugging; don't navigate away.
|
||||
// Visit with https://localhost:8080/sso-connector.html?debug=1
|
||||
const debug = getQsParam("debug");
|
||||
if (debug === "1") {
|
||||
// Keep the page static for styling/debugging; don't navigate away.
|
||||
|
||||
@@ -21,11 +21,35 @@
|
||||
<img class="new-logo-themed !tw-w-[200px]" alt="Bitwarden" />
|
||||
</div>
|
||||
<div class="spinner-container tw-justify-center">
|
||||
<i
|
||||
class="bwi bwi-spinner bwi-spin bwi-3x tw-text-muted"
|
||||
title="Loading"
|
||||
aria-hidden="true"
|
||||
></i>
|
||||
<span class="tw-inline-block tw-overflow-hidden tw-flex tw-items-center tw-h-16">
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 56 56"
|
||||
fill="none"
|
||||
class="tw-size-full tw-animate-spin"
|
||||
aria-hidden="true"
|
||||
>
|
||||
<circle
|
||||
cx="28"
|
||||
cy="28"
|
||||
r="23"
|
||||
class="tw-stroke-primary-600"
|
||||
pathLength="4"
|
||||
stroke-width="5"
|
||||
stroke-dasharray="1 3"
|
||||
stroke-linecap="round"
|
||||
></circle>
|
||||
<circle
|
||||
cx="28"
|
||||
cy="28"
|
||||
r="23"
|
||||
class="tw-stroke-primary-600"
|
||||
stroke-width="5"
|
||||
opacity="0.4"
|
||||
></circle>
|
||||
</svg>
|
||||
<span class="tw-sr-only">Loading</span>
|
||||
</span>
|
||||
</div>
|
||||
<div class="tw-relative tw-grow">
|
||||
<div
|
||||
|
||||
Reference in New Issue
Block a user