1
0
mirror of git://jb55.com/damus synced 2024-09-20 03:57:06 +00:00

Make profile picture placeholder gray instead of purple

This commit is contained in:
William Casarin 2023-06-10 11:33:18 +02:00
parent ba3a6b07b2
commit c59d2a96af

View File

@ -92,6 +92,7 @@ struct InnerProfilePicView: View {
var Placeholder: some View {
Circle()
.frame(width: size, height: size)
.foregroundColor(DamusColors.mediumGrey)
.overlay(Circle().stroke(highlight_color(highlight), lineWidth: pfp_line_width(highlight)))
.padding(2)
}