From bfffd63dab4d83852fc57e06d441d2f9157b803f Mon Sep 17 00:00:00 2001 From: William Casarin Date: Tue, 9 May 2023 18:19:41 -0700 Subject: [PATCH] ui: use darker border colors in BigButton Might need to update the other buttons as well in the share sheet --- damus/Views/ActionBar/BigButton.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/ActionBar/BigButton.swift b/damus/Views/ActionBar/BigButton.swift index 282f37f6..18161e05 100644 --- a/damus/Views/ActionBar/BigButton.swift +++ b/damus/Views/ActionBar/BigButton.swift @@ -27,7 +27,7 @@ struct BigButton: View { .foregroundColor(colorScheme == .light ? DamusColors.black : DamusColors.white) .overlay { RoundedRectangle(cornerRadius: 24) - .stroke(colorScheme == .light ? DamusColors.mediumGrey : DamusColors.white, lineWidth: 1) + .stroke(colorScheme == .light ? DamusColors.black : DamusColors.white, lineWidth: 2) } .padding(EdgeInsets(top: 10, leading: 50, bottom: 25, trailing: 50)) }