Fixed a wrong frame size in the first federation screen

This commit is contained in:
Arnfried Griesert
2024-02-29 07:27:58 +01:00
parent 559eeea1cd
commit dcab2c5cfc

View File

@@ -38,7 +38,7 @@ struct IntroduceFederationScreen1: View {
.padding(5) // outer border size
.background(Color(ThemeService.shared().theme.backgroundColor))
.clipShape(Circle())
.frame(width: IntroduceFederationView.imageSize + 1, height: IntroduceFederationView.imageSize + 12)
.frame(width: IntroduceFederationView.imageSize + 12, height: IntroduceFederationView.imageSize + 12)
.padding(.trailing, 76)
}
.padding(.bottom, 42)