소스 검색

💄 style(wechat): adjust wechat callback page layout

- change container class from "text-center" to "flex flex-col items-center" for better layout control
yourname 8 달 전
부모
커밋
18bbe47585
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/client/mobile/pages/WechatCallbackPage.tsx

+ 1 - 1
src/client/mobile/pages/WechatCallbackPage.tsx

@@ -90,7 +90,7 @@ const WechatCallbackPage: React.FC = () => {
 
   return (
     <div className="flex justify-center items-center min-h-screen bg-gray-100">
-      <div className="text-center">
+      <div className="flex flex-col items-center">
         {getStatusIcon()}
         <h2 className="mt-4 text-lg font-medium text-gray-900">
           {status === 'loading' && '微信登录处理中...'}