From 01f33cdc137dec5fee0fecaecf6fc2dfea3f17b2 Mon Sep 17 00:00:00 2001 From: Deepak Salunke Date: Fri, 6 Feb 2026 15:13:44 +0530 Subject: [PATCH] Record spin added when song plays --- frontend/assets/css/style.css | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/frontend/assets/css/style.css b/frontend/assets/css/style.css index acf54ed..4886c0a 100755 --- a/frontend/assets/css/style.css +++ b/frontend/assets/css/style.css @@ -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 {