We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae9de28 commit 61c227cCopy full SHA for 61c227c
mystbin/frontend/components/PasswordModal.tsx
@@ -57,9 +57,7 @@ export default function PasswordModal({
57
onClick={() => onAttempt(passwordAttempt)}
58
>
59
{loading ? (
60
- <Spinner animation="border" role="status">
61
- <span className="sr-only">Loading...</span>
62
- </Spinner>
+ <Spinner className={styles.spinner} animation="border" role="status" />
63
) : (
64
"Submit"
65
)}
mystbin/frontend/styles/PasswordModal.module.css
@@ -15,3 +15,7 @@
15
float: right;
16
margin-top: 0.4rem;
17
}
18
+
19
+.spinner {
20
+ color: #e3e3e3;
21
+}
0 commit comments