ソースを参照

Merge branch 'dev' of http://git.ycjcjy.com/shigongli/miniapp-v2 into dev

李志伟 3 年 前
コミット
1c9f7a6788
共有2 個のファイルを変更した2 個の追加1 個の削除を含む
  1. 1
    1
      src/layouts/Loading.jsx
  2. 1
    0
      src/layouts/index.jsx

+ 1
- 1
src/layouts/Loading.jsx ファイルの表示

@@ -24,7 +24,7 @@ export default (props) => {
24 24
           textAlign: 'center',
25 25
           opacity: '0.8',
26 26
           animation: ' logo-opacity 2s linear infinite',
27
-
27
+          fontSize: '4vw',
28 28
         }}
29 29
       >
30 30
         收集人间美好

+ 1
- 0
src/layouts/index.jsx ファイルの表示

@@ -58,6 +58,7 @@ export default (Child) => (props) => {
58 58
     })
59 59
   }
60 60
 
61
+
61 62
   return loading ? <Loading /> : <Child {...props} person={person} router={router} location={location} />
62 63
 
63 64
 }