Ver Fonte

Update sidebar upgrade card to Premium branding with centered crown layout.

Co-authored-by: Cursor <cursoragent@cursor.com>
AhtashamShahzad1 há 1 mês atrás
pai
commit
5b492fc723
1 ficheiros alterados com 3 adições e 3 exclusões
  1. 3 3
      Reddit App/Views/SidebarView.swift

+ 3 - 3
Reddit App/Views/SidebarView.swift

@@ -97,11 +97,11 @@ struct SidebarView: View {
 
     private var upgradeCard: some View {
         VStack(alignment: isPremium ? .center : .leading, spacing: 8) {
-            HStack(spacing: 6) {
+            VStack(spacing: 4) {
                 Image(systemName: "crown.fill")
-                    .font(.system(size: 12))
+                    .font(.system(size: 14))
                     .foregroundStyle(AppTheme.accentYellow)
-                Text(isPremium ? "Reddora Pro" : "Upgrade to Pro")
+                Text(isPremium ? "Reddora Premium" : "Upgrade to Premium")
                     .font(.system(size: 12, weight: .semibold))
                     .foregroundStyle(AppTheme.textPrimary)
             }