From 77e9dc7094130f2d83410b7f74a6a35afee485dd Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Fri, 9 Sep 2022 15:49:48 +0800 Subject: [PATCH] Remove extra spacing at top of fullscreen player --- .../Sources/App/Views/AudioPlayer/MiniPlayer.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apple/OmnivoreKit/Sources/App/Views/AudioPlayer/MiniPlayer.swift b/apple/OmnivoreKit/Sources/App/Views/AudioPlayer/MiniPlayer.swift index 72ed8d28b..2e6b042c7 100644 --- a/apple/OmnivoreKit/Sources/App/Views/AudioPlayer/MiniPlayer.swift +++ b/apple/OmnivoreKit/Sources/App/Views/AudioPlayer/MiniPlayer.swift @@ -119,7 +119,7 @@ public struct MiniPlayer: View { if expanded { ZStack { closeButton - .padding(.top, 8) + .padding(.top, 24) .frame(maxWidth: .infinity, alignment: .leading) // shareButton @@ -316,7 +316,7 @@ public struct MiniPlayer: View { ZStack(alignment: .center) { presentingView VStack { - Spacer() + Spacer(minLength: 0) if let item = self.audioSession.item, isPresented { playerContent(item) .offset(y: offset)