Skip to content

Commit bee0038

Browse files
committed
Fixed navigation bar icon alignment issues
1 parent 98ae247 commit bee0038

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

GoInfoGame/GoInfoGame/UI/Map/MapView.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ struct MapView: View {
243243
viewModel.checkSyncStatus()
244244
}
245245
})
246-
.frame(width: 20, height: 20)
247246
.foregroundStyle(Asset.Colors.huskyPurple.swiftUIColor)
247+
.frame(width: 30, height: 30)
248248
}
249249

250250
ToolbarItem(placement: .navigationBarTrailing) {
@@ -254,19 +254,19 @@ struct MapView: View {
254254
viewModel.showSatellitePicker = true
255255
}) {
256256
Image(systemName: "square.2.layers.3d.bottom.filled")
257-
.frame(width: 20, height: 20)
258257
.foregroundStyle(Asset.Colors.huskyPurple.swiftUIColor)
259258
}
259+
.frame(width: 30, height: 30)
260260
}
261261
ToolbarItem(placement: .navigationBarTrailing) {
262262
Button(action: {
263263
print("Settings icon tapped")
264264
showUserSettingsSheet = true
265265
}) {
266266
Image(systemName: "gear")
267-
.frame(width: 20, height: 20)
268267
.foregroundStyle(Asset.Colors.huskyPurple.swiftUIColor)
269268
}
269+
.frame(width: 30, height: 30)
270270
}
271271
}
272272
.toolbarBackground(.visible, for: .navigationBar)

0 commit comments

Comments
 (0)