From fc0e803c2e8387b8d43470da45be44769573f6cb Mon Sep 17 00:00:00 2001 From: jyw28 Date: Tue, 21 May 2024 17:46:50 +0900 Subject: [PATCH] feat: Add bottomBar padding --- .../UI/Feature/Main/Navigation/BottomNavigation.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/alimo/Projects/App/Sources/UI/Feature/Main/Navigation/BottomNavigation.swift b/alimo/Projects/App/Sources/UI/Feature/Main/Navigation/BottomNavigation.swift index 5b3fd83..b9bae17 100644 --- a/alimo/Projects/App/Sources/UI/Feature/Main/Navigation/BottomNavigation.swift +++ b/alimo/Projects/App/Sources/UI/Feature/Main/Navigation/BottomNavigation.swift @@ -37,9 +37,9 @@ struct BottomNavigation: View { } .padding(.horizontal, 28) .padding(.top, 10) - .background(.white) - .clipShape(RoundedCorner(radius: 16)) - .shadow(color: Color.black.opacity(0.04), radius: 12) + .padding(.bottom, 4) + .background(Color.white) + .clipShape(RoundedCorner(radius: 12)) .onChange(of: selectedTab) { _ in let impactMed = UIImpactFeedbackGenerator(style: .soft) impactMed.impactOccurred()