Refactor code: remove unnecessary comments and clean up whitespace in various files

This commit is contained in:
vista-man
2025-04-10 22:53:25 +02:00
parent e46044682e
commit 4e0f6238b6
8 changed files with 62 additions and 98 deletions

View File

@@ -32,7 +32,7 @@ html {
display: flex;
justify-content: center;
align-items: center;
height: 75vh; /* Full viewport height for vertical centering */
height: 75vh;
}
#btn-scan-qr img {
@@ -40,7 +40,7 @@ html {
padding: 15px;
margin: 15px;
background: white;
border-radius: 10px; /* Optional: Add rounded corners */
border-radius: 10px;
}
#qr-result {
@@ -52,7 +52,7 @@ html {
}
#video {
display: none; /* Initially hidden */
display: none;
margin: 0 auto;
width: 100%;
max-width: 400px;
@@ -62,5 +62,5 @@ html {
}
#video:visible {
display: block; /* Show the video feed when it becomes visible */
display: block;
}