Skip to content

Commit

Permalink
Handle different background color on iPads depending on if the app is…
Browse files Browse the repository at this point in the history
… in full screen or split view mode.
  • Loading branch information
jensutbult committed Nov 22, 2024
1 parent 1375935 commit 527c373
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Authenticator/UI/About/AboutView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ struct AboutView: View {
.frame(maxWidth: .infinity)
.padding(.top, 10)
.padding(.horizontal, 20)
.listRowBackground(Color(.tableBackground))
.listRowBackground(Color.black.opacity(0))

Section("Application") {
NavigationLink {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct ConfigurationView: View {
.frame(maxWidth: .infinity)
.padding(.top, 10)
.padding(.horizontal, 20)
.listRowBackground(Color(.tableBackground))
.listRowBackground(Color.black.opacity(0))
}

if let deviceInfo = model.deviceInfo {
Expand Down

0 comments on commit 527c373

Please sign in to comment.