fix(ui): restore round play and enqueue buttons on cards and rails (#788)

Album-card play and enqueue overlay buttons revert to a pill shape
(var(--radius-full)); the small play button next to track numbers in
the album track list / artist top-tracks reverts to a circle (50%).
The square shape from the consistency sweep felt off against the round
covers — back to the original round/pill family for these specific
icons. All other surfaces touched in #745 stay on var(--radius-sm).
This commit is contained in:
Frank Stellmacher
2026-05-19 00:17:34 +02:00
committed by GitHub
parent 64a8a0ed8a
commit 4b239957c4
2 changed files with 2 additions and 2 deletions
@@ -236,7 +236,7 @@
color: var(--ctp-crust);
border: none;
padding: 8px 20px;
border-radius: var(--radius-sm);
border-radius: var(--radius-full);
display: flex;
align-items: center;
justify-content: center;
+1 -1
View File
@@ -269,7 +269,7 @@
height: 24px;
padding: 0;
border: none;
border-radius: var(--radius-sm);
border-radius: 50%;
background: var(--accent);
color: var(--ctp-crust);
cursor: pointer;