Skip to content

Commit

Permalink
Improve corner radius on SupportForm UI elements: Since there are rou…
Browse files Browse the repository at this point in the history
…nded corners on the overlay, the background view should have rounded corners as well.
  • Loading branch information
pmusolino committed Oct 4, 2024
1 parent 8bb3190 commit c019cc8
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ struct SupportForm: View {
.overlay(
RoundedRectangle(cornerRadius: Layout.cornerRadius).stroke(Color(.separator))
)
.cornerRadius(Layout.cornerRadius)
}

// Site Address Text Field
Expand All @@ -124,6 +125,7 @@ struct SupportForm: View {
.overlay(
RoundedRectangle(cornerRadius: Layout.cornerRadius).stroke(Color(.separator))
)
.cornerRadius(Layout.cornerRadius)
}

// Description Text Editor
Expand All @@ -138,6 +140,7 @@ struct SupportForm: View {
.overlay(
RoundedRectangle(cornerRadius: Layout.cornerRadius).stroke(Color(.separator))
)
.cornerRadius(Layout.cornerRadius)
}
}
.padding()
Expand Down

0 comments on commit c019cc8

Please sign in to comment.