diff --git a/lib/features/login/presentation/pages/login_page.dart b/lib/features/login/presentation/pages/login_page.dart index 4ae3a70..56e09d3 100644 --- a/lib/features/login/presentation/pages/login_page.dart +++ b/lib/features/login/presentation/pages/login_page.dart @@ -263,9 +263,16 @@ class _LoginPageState extends State { ), if (kDebugMode) ...[ const SizedBox(height: 12), + // QA 요청: 테스트 로그인 버튼을 테마 색상과 굵은 서체로 강조하여 피드백 반영. ShadButton.ghost( onPressed: isLoading ? null : _handleTestLogin, - child: const Text('테스트 로그인'), + child: Text( + '테스트 로그인', + style: theme.textTheme.small.copyWith( + color: theme.colorScheme.primary, + fontWeight: FontWeight.w600, + ), + ), ), ], ],