This commit is contained in:
2025-07-10 15:47:18 -04:00
parent 356669fdfd
commit 94c7412081
4 changed files with 109 additions and 0 deletions

1
static/qrcode.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -244,4 +244,33 @@
#status {
margin-bottom: 0;
}
#qr-link {
display: inline-flex;
}
#qr {
display: flex;
justify-content: center;
}
#qr img {
width: auto;
height: 60vh;
}
#loading {
display: inline-block;
width: 50px;
height: 50px;
border: 3px solid var(--mid-light);
border-radius: 50%;
border-top-color: var(--mid-dark);
animation: spin 1s ease-in-out infinite;
-webkit-animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}