Style fix

This commit is contained in:
Thomas Ricouard 2024-05-05 18:10:32 +02:00
parent c4dee39efe
commit 88218cd6ec

View file

@ -171,16 +171,18 @@ struct LatestPostsWidgetView : View {
.frame(width: 16, height: 16)
}
HStack(spacing: 0) {
Text(status.account.safeDisplayName)
.foregroundStyle(.primary)
if family != .systemSmall {
Text(status.account.safeDisplayName)
Text(" @")
.foregroundStyle(.tertiary)
Text(status.account.username)
.foregroundStyle(.tertiary)
}
Text(" @")
Text(status.account.username)
Spacer()
}
.font(.subheadline)
.fontWeight(.semibold)
.foregroundStyle(.secondary)
.lineLimit(1)
}
}