From d84b30bc84c1ce091ac28f51982e56bf33c4e610 Mon Sep 17 00:00:00 2001 From: Julien Maille Date: Sat, 21 Feb 2026 01:02:00 +0100 Subject: [PATCH] Fix album card play button overflow on mobile --- styles.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/styles.css b/styles.css index 9cfc44d..7f2b73a 100644 --- a/styles.css +++ b/styles.css @@ -6123,6 +6123,16 @@ img[src=''] { } @media (hover: none) and (pointer: coarse) { + /* Allow play button to float outside square cover on mobile */ + .card-image-wrapper { + overflow: visible; + } + + .card:not(.artist) .card-image-wrapper .card-image, + .card:not(.artist) .card-image-wrapper .card-collage { + clip-path: inset(0 round var(--radius)); + } + .main-content { padding: var(--spacing-sm); grid-area: main;