LiveLocationSharingViewer: Left align location ended banner content.

This commit is contained in:
SBiOSoftWhare 2022-08-02 17:51:37 +02:00
parent c9e916b909
commit ec2eeee00c

View file

@ -93,9 +93,9 @@ struct LiveLocationSharingViewer: View {
.font(theme.fonts.body) .font(theme.fonts.body)
.foregroundColor(theme.colors.tertiaryContent) .foregroundColor(theme.colors.tertiaryContent)
} }
.frame(maxWidth: .infinity, alignment: .center) .frame(maxWidth: .infinity, alignment: .leading)
.padding(.top, 10) .padding([.top, .bottom], 10)
.padding(.bottom, 10) .padding([.trailing, .leading], 15)
.background(theme.colors.background.ignoresSafeArea()) .background(theme.colors.background.ignoresSafeArea())
} }
} }