feat: add refresh button to mobile player card (#26) #27

Merged
shcizo merged 2 commits from feat/mobile-card-refresh-button-26 into main 2026-06-08 08:46:15 +02:00
Showing only changes of commit 2ef7de4e58 - Show all commits
+11
View File
@@ -363,6 +363,17 @@
color: var(--accent);
}
/* Spin only the icon glyph, not the 44px button box — otherwise the button's
lingering touch-hover frame (background + border) rotates too, which looks odd. */
.m-card.is-open .m-card__head .m-refresh-icon.spinning {
animation: none;
}
.m-card.is-open .m-card__head .m-refresh-icon.spinning i {
display: inline-block;
animation: spin 0.8s linear infinite;
}
.m-card__body {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;