From a6fbc668191070f3b37995e2f5cd33f0263b4cd3 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Thu, 6 Oct 2022 21:24:54 -0700 Subject: [PATCH] Touch up the logo --- Meshtastic/Views/Helpers/MeshtasticLogo.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Meshtastic/Views/Helpers/MeshtasticLogo.swift b/Meshtastic/Views/Helpers/MeshtasticLogo.swift index e632c01e..52713591 100644 --- a/Meshtastic/Views/Helpers/MeshtasticLogo.swift +++ b/Meshtastic/Views/Helpers/MeshtasticLogo.swift @@ -11,12 +11,12 @@ struct MeshtasticLogo: View { @Environment(\.colorScheme) var colorScheme var body: some View { - ZStack { + VStack { Image(colorScheme == .dark ? "logo-white" : "logo-black") .resizable() - .foregroundColor(.red) .scaledToFit() } - .padding(.bottom) + .padding(.bottom, 5) + .offset(x: -15) } }