Skip to content

Commit

Permalink
fix: address review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
saeedbashir committed Mar 6, 2024
1 parent 4b6a878 commit 492395b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public struct SignInView: View {
viewModel.trackForgotPasswordClicked()
viewModel.router.showForgotPasswordScreen()
}
.font(Theme.Fonts.titleMedium)
.font(Theme.Fonts.bodyLarge)
.foregroundColor(Theme.Colors.accentXColor)
.padding(.top, 0)
.accessibilityIdentifier("forgot_password_button")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ struct SocialAuthView: View {
HStack {
Text("\(AuthLocalization.or) \(title.lowercased()):")
.padding(.vertical, 20)
.font(Theme.Fonts.labelLarge)
.font(Theme.Fonts.bodyMedium)
.accessibilityIdentifier("social_auth_title_text")
Spacer()
}
Expand Down
2 changes: 1 addition & 1 deletion Core/Core/View/Base/SocialAuthButton.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public struct SocialAuthButton: View {
Text(title)
.foregroundStyle(textColor)
.padding(.leading, 10)
.font(Theme.Fonts.bodyMedium)
.font(Theme.Fonts.bodyLarge)
Spacer()
} icon: {
image.padding(.leading, 10)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ struct ProfileBottomSheet: View {
HStack(alignment: .center) {
switch type {
case .gallery:
CoreAssets.gallery.swiftUIImage
CoreAssets.gallery.swiftUIImage.renderingMode(.template)
.foregroundColor(Theme.Colors.primaryButtonTextColor)
case .remove:
CoreAssets.removePhoto.swiftUIImage
case .cancel:
Expand Down

0 comments on commit 492395b

Please sign in to comment.