From f935cc9cd8116e3a6705578ef382da317c15e976 Mon Sep 17 00:00:00 2001 From: Dave Nicolson Date: Sun, 10 Sep 2023 20:07:24 +0200 Subject: [PATCH] Fix iOS contact label alignment --- Shared/Settings/SettingsView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Shared/Settings/SettingsView.swift b/Shared/Settings/SettingsView.swift index 933c9b1c..2b7f4fc5 100644 --- a/Shared/Settings/SettingsView.swift +++ b/Shared/Settings/SettingsView.swift @@ -205,7 +205,7 @@ struct SettingsView: View { .resizable() .renderingMode(.template) .frame(maxWidth: 30, maxHeight: 30) - + .padding(.trailing, 6) Text("Discord Server") } } @@ -216,6 +216,7 @@ struct SettingsView: View { .resizable() .renderingMode(.template) .frame(maxWidth: 30, maxHeight: 30) + .padding(.trailing, 6) Text("Matrix Chat") } }