commit 810b3e1fa5fa88a46dafb85acee0d27f79c33e56 parent 75fb0d19e25d7cedaf88cf890a5422753ec262b9 Author: OlegAba <mail@olegaba.com> Date: Tue, 21 Feb 2023 22:11:07 -0500 Fix mention rounded border Closes: #670 Diffstat:
M | damus/Views/Events/BuilderEventView.swift | | | 6 | ++++-- |
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/damus/Views/Events/BuilderEventView.swift b/damus/Views/Events/BuilderEventView.swift @@ -71,8 +71,10 @@ struct BuilderEventView: View { } } .frame(minWidth: 0, maxWidth: .infinity) - .cornerRadius(8) - .border(Color.gray.opacity(0.2), width: 1) + .overlay( + RoundedRectangle(cornerRadius: 10) + .stroke(Color.gray.opacity(0.2), lineWidth: 1.0) + ) .onAppear { self.load() }