From 589ffcecca53e46bd61bee90ecb3be85193c1889 Mon Sep 17 00:00:00 2001 From: Benjamin Porter Date: Mon, 29 Dec 2025 14:09:01 -0700 Subject: [PATCH] Move jump back/forward labels below the icon Move jump back/forward labels below the icon. Previously they were on the side which looked a little awkward --- components/app/AudioPlayer.vue | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/components/app/AudioPlayer.vue b/components/app/AudioPlayer.vue index d4e1d5b3..4455132a 100644 --- a/components/app/AudioPlayer.vue +++ b/components/app/AudioPlayer.vue @@ -70,9 +70,14 @@
first_page -
- {{ jumpBackwardsItem.icon }} - {{ jumpBackwardsItem.label }} +
+ {{ jumpBackwardsItem.icon }} + {{ jumpBackwardsItem.label }}
@@ -80,9 +85,14 @@ {{ seekLoading ? 'autorenew' : !isPlaying ? 'play_arrow' : 'pause' }}
-
- {{ jumpForwardItem.icon }} - {{ jumpForwardItem.label }} +
+ {{ jumpForwardItem.icon }} + {{ jumpForwardItem.label }}
last_page
@@ -1099,6 +1109,9 @@ export default { margin: 0px 0px; font-size: 1.6rem; } +#playerControls .jump-label { + margin-top: 2px; +} #playerControls .play-btn { transition: all 0.15s cubic-bezier(0.39, 0.575, 0.565, 1); transition-property: padding, margin, height, width, min-width, min-height;