From eb026f2bfb4a856a67b6c70dcada5bfe11711a7b Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Wed, 21 Dec 2022 20:32:58 +0800 Subject: [PATCH] A little cleanup on the community modal --- apple/OmnivoreKit/Sources/Views/CommunityModal.swift | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/apple/OmnivoreKit/Sources/Views/CommunityModal.swift b/apple/OmnivoreKit/Sources/Views/CommunityModal.swift index 4ddec947b..3f9d6c162 100644 --- a/apple/OmnivoreKit/Sources/Views/CommunityModal.swift +++ b/apple/OmnivoreKit/Sources/Views/CommunityModal.swift @@ -30,14 +30,15 @@ public struct CommunityModal: View { .frame(maxWidth: .infinity, alignment: .leading) HStack { - TextChip(text: "¡ Help Wanted !", color: Color.red) + TextChip(text: "Help Wanted", color: Color.red) .frame(alignment: .leading) - TextChip(text: "¡ Community !", color: Color.green) + TextChip(text: "Community", color: Color.appCtaYellow) .frame(alignment: .leading) } } + .padding(.top, 16) + .padding(.bottom, 16) - // ScrollView { Text((try? AttributedString(markdown: message, options: AttributedString.MarkdownParsingOptions(interpretedSyntax: .inlineOnlyPreservingWhitespace))) ?? "") .foregroundColor(Color.appGrayText) @@ -64,7 +65,7 @@ public struct CommunityModal: View { } } .frame(maxWidth: .infinity, alignment: .leading) - .padding(.top, 16) + .padding(.top, 32) Spacer()