From 9825ccce6ea191ac781e7ec1c3f1301f971fe1f1 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Tue, 6 Jan 2026 15:27:08 +0100 Subject: [PATCH] fix: width to be same as bottom tab bar ios specifically --- components/music/MiniPlayerBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/music/MiniPlayerBar.tsx b/components/music/MiniPlayerBar.tsx index 14eba744..a53fa49c 100644 --- a/components/music/MiniPlayerBar.tsx +++ b/components/music/MiniPlayerBar.tsx @@ -26,7 +26,7 @@ import { Text } from "@/components/common/Text"; import { apiAtom } from "@/providers/JellyfinProvider"; import { useMusicPlayer } from "@/providers/MusicPlayerProvider"; -const HORIZONTAL_MARGIN = Platform.OS === "android" ? 8 : 16; +const HORIZONTAL_MARGIN = Platform.OS === "android" ? 12 : 20; const BOTTOM_TAB_HEIGHT = Platform.OS === "android" ? 56 : 52; const BAR_HEIGHT = Platform.OS === "android" ? 58 : 50;