style(24-01): add recording button pulse animation

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Nuwan 2026-02-23 20:45:03 +05:30
parent 89a9d4ced3
commit 42eac0d304
7 changed files with 24 additions and 6 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -82,3 +82,21 @@ table.vu td {
width:12px;
height:12px;
}
// Recording button active state
.btn-recording-active {
animation: recording-pulse 1.5s ease-in-out infinite;
&:hover {
animation: none;
}
}
@keyframes recording-pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.7;
}
}