diff --git a/frontend/mobile-app/lib/features/auth/presentation/pages/sms_verify_page.dart b/frontend/mobile-app/lib/features/auth/presentation/pages/sms_verify_page.dart index afb9eb07..e500c0fb 100644 --- a/frontend/mobile-app/lib/features/auth/presentation/pages/sms_verify_page.dart +++ b/frontend/mobile-app/lib/features/auth/presentation/pages/sms_verify_page.dart @@ -366,8 +366,8 @@ class _SmsVerifyPageState extends ConsumerState { mainAxisAlignment: MainAxisAlignment.spaceBetween, children: List.generate(6, (index) { return SizedBox( - width: 48.w, - height: 56.h, + width: 50.w, + height: 60.h, child: KeyboardListener( focusNode: FocusNode(), onKeyEvent: (event) => _onKeyEvent(index, event), @@ -404,10 +404,9 @@ class _SmsVerifyPageState extends ConsumerState { ), ), style: TextStyle( - fontSize: 20.sp, + fontSize: 24.sp, fontWeight: FontWeight.w700, color: const Color(0xFF333333), - height: 1.2, ), onChanged: (value) => _onCodeChanged(index, value), ),