💄 Optimize account view on watchOS

This commit is contained in:
2025-10-30 00:28:56 +08:00
parent 49b15e7674
commit a8055de910

View File

@@ -93,11 +93,11 @@ struct AccountView: View {
} }
// Username and Handle // Username and Handle
VStack(alignment: .leading, spacing: 4) { VStack(alignment: .leading) {
Text(user.nick) Text(user.nick)
.font(.headline) .font(.headline)
Text("@\(user.name)") Text("@\(user.name)")
.font(.subheadline) .font(.caption)
.foregroundColor(.secondary) .foregroundColor(.secondary)
} }
} }