mirror of
https://github.com/whitte-h/Lyrio.git
synced 2026-07-22 06:52:18 +00:00
21 lines
318 B
CSS
21 lines
318 B
CSS
.lyrio-status svg {
|
|
animation: lyrio-spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes lyrio-spin {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.lyrio-status {
|
|
display: none;
|
|
}
|
|
|
|
.lyrio-status.is-active {
|
|
display: flex;
|
|
}
|
|
|
|
.lyrio-tag-marker {
|
|
color: var(--lyrio-tag-color);
|
|
font-weight: 600;
|
|
}
|