Fix iOS contact label alignment

This commit is contained in:
Dave Nicolson 2023-09-10 20:07:24 +02:00
parent 2f10dc8368
commit f935cc9cd8

View File

@ -205,7 +205,7 @@ struct SettingsView: View {
.resizable() .resizable()
.renderingMode(.template) .renderingMode(.template)
.frame(maxWidth: 30, maxHeight: 30) .frame(maxWidth: 30, maxHeight: 30)
.padding(.trailing, 6)
Text("Discord Server") Text("Discord Server")
} }
} }
@ -216,6 +216,7 @@ struct SettingsView: View {
.resizable() .resizable()
.renderingMode(.template) .renderingMode(.template)
.frame(maxWidth: 30, maxHeight: 30) .frame(maxWidth: 30, maxHeight: 30)
.padding(.trailing, 6)
Text("Matrix Chat") Text("Matrix Chat")
} }
} }