Record spin added when song plays

This commit is contained in:
Deepak Salunke 2026-02-06 15:13:44 +05:30
parent 9aad07462d
commit 01f33cdc13

View file

@ -393,12 +393,12 @@ input[type="text"], input[type="email"], input[type="password"], select {
width: 100%;
display: block;
padding: 20px 0px;
animation: spin 5s linear infinite;
/*animation: spin 5s linear infinite;*/
aspect-ratio: 1 / 1;
object-fit: contain;
}
.rotate {
.rotate, .spinning {
animation: spin 5s linear infinite;
}
@ -563,13 +563,22 @@ input[type="text"], input[type="email"], input[type="password"], select {
margin: 15px auto;
line-height: 2;
max-height: 200px;
overflow-y: scroll;
overflow-y: scroll !important;
padding: 20px;
border: 1px solid #fff;
max-width: 500px;
border-radius: 5px;
width: 80%;
white-space: pre-line;
/* Hide scroll bar in Firefox, IE and Edge */
scrollbar-width: none;
-ms-overflow-style: none;
}
/* Hide scroll bar in Chrome, Safari, Opera */
.song-lyrics::-webkit-scrollbar {
display: none;
}
.song-control {