Skip to content

Commit 38a8757

Browse files
committed
Fix bottom padding of connection view
1 parent bb982f2 commit 38a8757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/MullvadVPN/View controllers/Tunnel/ConnectionView/ConnectionView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ struct ConnectionView: View {
7575
.padding(16)
7676
.background(BlurView(style: .dark))
7777
.cornerRadius(12)
78-
.padding(16)
78+
.padding(EdgeInsets(top: 16, leading: 16, bottom: 24, trailing: 16))
7979
.onChange(of: connectionViewModel.showsConnectionDetails) { showsConnectionDetails in
8080
if !showsConnectionDetails {
8181
withAnimation {

0 commit comments

Comments
 (0)