From 82168755e23a7c7e0e97b4306e6f86e579c72870 Mon Sep 17 00:00:00 2001 From: cheykrym Date: Thu, 14 Aug 2025 03:37:28 +0300 Subject: [PATCH] change title --- Shared/Views/Tab/SideMenuView.swift | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Shared/Views/Tab/SideMenuView.swift b/Shared/Views/Tab/SideMenuView.swift index 8922ad4..141385d 100644 --- a/Shared/Views/Tab/SideMenuView.swift +++ b/Shared/Views/Tab/SideMenuView.swift @@ -75,23 +75,24 @@ struct SideMenuView: View { ZStack { Image(systemName: "person.circle.fill") .resizable() - .frame(width: 40, height: 40) + .frame(width: 32, height: 32) // Smaller icon .foregroundColor(.secondary) if account.isCurrent { Image(systemName: "checkmark.circle.fill") .foregroundColor(.blue) .background(Circle().fill(Color(UIColor.systemBackground))) - .font(.title3) - .offset(x: 14, y: 14) + .font(.body) // Smaller checkmark + .offset(x: 11, y: 11) // Adjusted offset } } VStack(alignment: .leading) { - Text(account.name).font(.subheadline).bold() - Text(account.username).font(.caption) + Text(account.name).font(.footnote).bold() // Smaller text + Text(account.username).font(.caption2) // Smaller text } - .foregroundColor(.primary) } + .foregroundColor(.primary) + } Spacer() }