commit bfffd63dab4d83852fc57e06d441d2f9157b803f
parent 1db425fd691d97cfccc87c6dac993c45e77bbbe7
Author: William Casarin <jb55@jb55.com>
Date: Tue, 9 May 2023 18:19:41 -0700
ui: use darker border colors in BigButton
Might need to update the other buttons as well in the share sheet
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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))
}