Fix the background colour when replying. (#1007)

This commit is contained in:
Doug 2023-06-02 09:58:28 +01:00 committed by GitHub
parent dcc4ea5e85
commit 07927c337b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -126,7 +126,7 @@ private struct MessageComposerReplyHeader: View {
TimelineReplyView(placement: .composer, timelineItemReplyDetails: replyDetails)
.frame(maxWidth: .infinity, alignment: .leading)
.padding(4.0)
.background(.white)
.background(Color.element.background)
.cornerRadius(13.0)
.padding([.trailing, .vertical], 8.0)
.padding([.leading], -4.0)

View File

@ -0,0 +1 @@
Fix an incorrect colour when replying to a message in dark mode.