diff --git a/Meshtastic/Views/Helpers/MeshtasticLogo.swift b/Meshtastic/Views/Helpers/MeshtasticLogo.swift index 84040d92..627ffdca 100644 --- a/Meshtastic/Views/Helpers/MeshtasticLogo.swift +++ b/Meshtastic/Views/Helpers/MeshtasticLogo.swift @@ -19,19 +19,20 @@ struct MeshtasticLogo: View { .renderingMode(.template) .foregroundColor(.accentColor) .scaledToFit() + .offset(x: -15) } .padding(.bottom, 5) .padding(.top, 5) - .offset(x: -15) + #else VStack { Image(colorScheme == .dark ? "logo-white" : "logo-black") .resizable() .renderingMode(.template) .scaledToFit() + .offset(x: -15) } .padding(.bottom, 5) - .offset(x: -15) #endif } }