Still awaiting the check auth endpoint, the code only acts on a 401 response. That means that it currently will not detect if an account is expired.
17 lines
275 B
Svelte
17 lines
275 B
Svelte
<p id="load">Loading...</p>
|
|
|
|
<style>
|
|
#load {
|
|
margin-top: 5px;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: white;
|
|
animation: pulse-loading 2.5s linear infinite;
|
|
}
|
|
@keyframes pulse-loading {
|
|
50% {
|
|
color: rgb(136, 164, 255);
|
|
}
|
|
}
|
|
</style>
|