ui: use darker border colors in BigButton

Might need to update the other buttons as well in the share sheet
This commit is contained in:
William Casarin
2023-05-09 18:19:41 -07:00
parent 1db425fd69
commit bfffd63dab

View File

@@ -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))
}