Ui changes

This commit is contained in:
Arnfried Griesert
2024-03-22 06:37:42 +01:00
parent 8eb38befdf
commit 4f2835c903
3 changed files with 4 additions and 4 deletions

View File

@@ -104,13 +104,13 @@ struct AuthenticationQRLoginStartScreen: View {
var stepsView: some View {
VStack(alignment: .leading, spacing: 12) {
ForEach(steps) { step in
HStack(spacing: 15) {
HStack(alignment: .firstTextBaseline, spacing: 16) {
Text(String(step.id))
.font(theme.fonts.caption2SB)
.foregroundColor(theme.colors.accent)
.padding(6)
.shapedBorder(color: theme.colors.accent, borderWidth: 1, shape: Circle())
.offset(x: 1, y: 0)
.offset(x: 1, y: -2)
Text(step.description)
.foregroundColor(theme.colors.primaryContent)
.font(theme.fonts.subheadline)