Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #6668 - Old onboarding card should respect proper theme background #6685

Merged
merged 1 commit into from May 25, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 3 additions & 6 deletions Client/Frontend/Intro/IntroWelcomeAndSyncViewV1.swift
Expand Up @@ -159,12 +159,9 @@ class IntroWelcomeAndSyncViewV1: UIView, CardTheme {

// MARK: View setup
private func initialViewSetup() {
if #available(iOS 13, *) {
backgroundColor = .systemBackground
} else {
backgroundColor = .white
}

// Background colour setup
backgroundColor = fxBackgroundThemeColour
// View setup
main2panel.axis = .vertical
main2panel.distribution = .fillEqually

Expand Down