Skip to content

Commit

Permalink
[Brand Updates] Fixes for Skip button of the onboarding carousel (#14939
Browse files Browse the repository at this point in the history
)
  • Loading branch information
hichamboushaba authored Jan 22, 2025
2 parents d0390ea + d61bbc3 commit a02ee50
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ private extension LoginOnboardingViewController {
let button = UIButton(frame: .zero)
button.accessibilityIdentifier = "Login Onboarding Skip Button"
button.applyLinkButtonStyle()
button.titleLabel?.applyHeadlineStyle()
button.setTitleColor(.init(light: .black, dark: .white), for: .normal)
button.setTitleColor(.init(light: .gray(.shade80), dark: .gray(.shade20)), for: .highlighted)
button.setTitle(Localization.skipButtonTitle, for: .normal)
button.on(.touchUpInside) { [weak self] _ in
self?.onDismiss(.skip)
Expand Down

0 comments on commit a02ee50

Please sign in to comment.