Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into graeme/partial-form-save
Browse files Browse the repository at this point in the history
  • Loading branch information
graeme committed Dec 9, 2024
2 parents 738f988 + f565fd5 commit d35234a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DuckDuckGo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -11363,8 +11363,8 @@
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/DuckDuckGo/BrowserServicesKit";
requirement = {
kind = exactVersion;
version = 210.0.1;
kind = revision;
revision = 6a5642a07acc85af9e1b165066e5b9d9716b7a09;
};
};
98A16C2928A11BDE00A6C003 /* XCRemoteSwiftPackageReference "BrowserServicesKit" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ struct OnboardingTrySearchDialog: View {
title: title,
titleFont: Font(UIFont.daxTitle3()),
message: NSAttributedString(string: message),
messageFont: Font.system(size: 16),
list: viewModel.itemsList,
listAction: viewModel.listItemPressed
)
Expand Down Expand Up @@ -67,6 +68,7 @@ struct OnboardingTryVisitingSiteDialogContent: View {
title: viewModel.title,
titleFont: Font(UIFont.daxTitle3()),
message: message,
messageFont: Font.system(size: 16),
list: viewModel.itemsList,
listAction: viewModel.listItemPressed)
}
Expand All @@ -90,7 +92,9 @@ struct OnboardingFireButtonDialogContent: View {

var body: some View {
ContextualDaxDialogContent(
message: attributedMessage)
message: attributedMessage,
messageFont: Font.system(size: 16)
)
}
}

Expand All @@ -113,6 +117,7 @@ struct OnboardingFirstSearchDoneDialog: View {
} else {
ContextualDaxDialogContent(
message: message,
messageFont: Font.system(size: 16),
customActionView: AnyView(
OnboardingCTAButton(title: cta) {
gotItAction()
Expand Down Expand Up @@ -164,6 +169,7 @@ struct OnboardingTrackersDoneDialog: View {
} else {
ContextualDaxDialogContent(
message: message,
messageFont: Font.system(size: 16),
customActionView: AnyView(
OnboardingCTAButton(title: cta) {
blockedTrackersCTAAction()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ final class NewTabDaxDialogFactory: NewTabDaxDialogProvider {
FadeInView {
ScrollView(.vertical) {
DaxDialogView(logoPosition: .top) {
ContextualDaxDialogContent(message: NSAttributedString(string: message))
ContextualDaxDialogContent(message: NSAttributedString(string: message), messageFont: Font.system(size: 16))
}
.padding()
}
Expand Down

0 comments on commit d35234a

Please sign in to comment.