From 81f6dfaf1f609ca30e84d0a96be4f18e29fff749 Mon Sep 17 00:00:00 2001 From: Miguel Ángel Moreno Date: Tue, 23 Jan 2024 16:26:16 +0100 Subject: feat(frontend): amend audio player loading icon sizes --- src/frontend/tubo/components/audio_player.cljs | 2 +- src/frontend/tubo/components/play_queue.cljs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/frontend') diff --git a/src/frontend/tubo/components/audio_player.cljs b/src/frontend/tubo/components/audio_player.cljs index ec8337c..3e096e7 100644 --- a/src/frontend/tubo/components/audio_player.cljs +++ b/src/frontend/tubo/components/audio_player.cljs @@ -55,7 +55,7 @@ #(rf/dispatch [::events/set-player-time (- @!elapsed-time 5)])] [player/button (if (or loading? (not @!player)) - [layout/loading-icon service-color "text-2xl"] + [layout/loading-icon service-color "lg:text-2xl"] (if paused? [:i.fa-solid.fa-play] [:i.fa-solid.fa-pause])) diff --git a/src/frontend/tubo/components/play_queue.cljs b/src/frontend/tubo/components/play_queue.cljs index b4d1dc0..a6410b6 100644 --- a/src/frontend/tubo/components/play_queue.cljs +++ b/src/frontend/tubo/components/play_queue.cljs @@ -85,7 +85,7 @@ :show-on-mobile? true] [player/button (if (or loading? (not @!player)) - [layout/loading-icon service-color "text-2xl"] + [layout/loading-icon service-color "text-3xl"] (if paused? [:i.fa-solid.fa-play] [:i.fa-solid.fa-pause])) -- cgit v1.2.3