소스 검색

Restore rounded-rectangle shape for the Check Grammar button.

The pill-style Capsule clip was making the button sides fully oval; use AppTheme.buttonCornerRadius instead.

Co-authored-by: Cursor <cursoragent@cursor.com>
AhtashamShahzad1 1 개월 전
부모
커밋
f9147bdce2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      gramora/Views/Components/GradientButton.swift

+ 1 - 1
gramora/Views/Components/GradientButton.swift

@@ -22,7 +22,7 @@ struct GradientButton: View {
             .padding(.vertical, 15)
             .frame(maxWidth: .infinity)
             .background(AppTheme.primaryGradient)
-            .clipShape(Capsule())
+            .clipShape(RoundedRectangle(cornerRadius: AppTheme.buttonCornerRadius))
             .shadow(color: AppTheme.teal.opacity(0.30), radius: 10, y: 4)
         }
         .buttonStyle(.plain)