Browse Source

fix chat opacity on dark theme

Changelog-Fixed: Fix opacity for chat messages in dark theme
Signed-off-by: William Casarin <jb55@jb55.com>
profiles-everywhere
William Casarin 2 years ago
parent
commit
4da93b7630
  1. 2
      damus/Views/ChatView.swift

2
damus/Views/ChatView.swift

@ -126,7 +126,7 @@ struct ChatView: View {
.padding(6)
}
.padding([.leading], 2)
.background(colorScheme == .light ? Color.secondary.opacity(0.1) : Color.secondary.opacity(0.25))
.background(Color.secondary.opacity(0.1))
.cornerRadius(8.0)
//.border(Color.red)

Loading…
Cancel
Save