Touch up the logo

This commit is contained in:
Garth Vander Houwen 2022-10-06 21:24:54 -07:00
parent 755a7c1af8
commit a6fbc66819

View file

@ -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)
}
}