2
2
mirror of https://github.com/mastodon/mastodon-ios synced 2025-04-11 22:58:02 +02:00

Dark mode update: .secondarySystemBackground for inline post previews

This commit is contained in:
shannon 2025-02-11 08:44:53 -05:00
parent ef4ee4cd2f
commit a24b2a3240

View File

@ -27,7 +27,7 @@ struct InlinePostPreview: View {
.frame(maxWidth: .infinity)
.background {
RoundedRectangle(cornerRadius: 8)
.fill(colorScheme == .dark ? AnyShapeStyle(.separator) : AnyShapeStyle(.clear))
.fill(colorScheme == .dark ? AnyShapeStyle(Color(UIColor.secondarySystemBackground)) : AnyShapeStyle(.clear))
.stroke(.separator)
}
}