Skip to content

Commit

Permalink
Fix New Connector spacing (#1215)
Browse files Browse the repository at this point in the history
  • Loading branch information
GhenadieVP committed Jul 17, 2024
1 parent d421294 commit 1a204be
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,15 @@ extension NewConnection {

extension View {
func withTitle(_ title: String) -> some View {
VStack {
VStack(spacing: .zero) {
Text(title)
.foregroundColor(.app.gray1)
.textStyle(.sheetTitle)

Spacer(minLength: 0)
.padding(.bottom, .medium3)

self

Spacer(minLength: 0)
}
}
}
Expand Down

0 comments on commit 1a204be

Please sign in to comment.