diff --git a/yobble/Views/Tab/CustomTabBar.swift b/yobble/Views/Tab/CustomTabBar.swift index 5edd001..80d38f8 100644 --- a/yobble/Views/Tab/CustomTabBar.swift +++ b/yobble/Views/Tab/CustomTabBar.swift @@ -12,7 +12,7 @@ struct CustomTabBar: View { TabBarButton(systemName: "person.2.fill", text: NSLocalizedString("Контакты", comment: ""), isSelected: selectedTab == 4) { selectedTab = 4 } - + TabBarButton(systemName: "bubble.left.and.bubble.right.fill", text: NSLocalizedString("Чаты", comment: ""), isSelected: selectedTab == 2) { selectedTab = 2 } @@ -43,7 +43,7 @@ struct CustomTabBar: View { } } .padding(.horizontal) - .padding(.top, 1) + .padding(.top, isMessengerModeEnabled ? 6 : 1) .padding(.bottom, 30) // Добавляем отступ снизу // .background(Color(.systemGray6)) }