From 395dfab9382c6c73613678933ce17cc8a8cc340d Mon Sep 17 00:00:00 2001 From: lelo Date: Mon, 17 Mar 2025 17:17:17 +0000 Subject: [PATCH] fix apple player --- static/styles.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/static/styles.css b/static/styles.css index 6c3db35..fc3d509 100644 --- a/static/styles.css +++ b/static/styles.css @@ -129,9 +129,17 @@ footer { } footer audio { width: 75%; - scale: 1.3; + transform: scale(1.3); /* Default for other devices */ padding: 10px 0; } + +/* Target Safari specifically */ +@supports (-webkit-touch-callout: none) { + footer audio { + width: 60%; + transform: scale(1.6); /* Different scale for Apple devices */ + } +} .audio-player-container { background-color: #fff; border-radius: 8px;