Add Padding to Attachment Icons

This commit is contained in:
Joel Klabo
2023-04-05 10:18:46 -07:00
committed by William Casarin
parent b14858b4b1
commit b585e8c21c

View File

@@ -80,6 +80,7 @@ struct PostView: View {
attach_media = true attach_media = true
}, label: { }, label: {
Image(systemName: "photo") Image(systemName: "photo")
.padding(6)
}) })
} }
@@ -88,6 +89,7 @@ struct PostView: View {
attach_camera = true attach_camera = true
}, label: { }, label: {
Image(systemName: "camera") Image(systemName: "camera")
.padding(6)
}) })
} }