소스 검색

fix residue website color and try to fix apple status bar by adding backgroundcolor to body
also update gitignore

Ramona Plogmann 2 년 전
부모
커밋
c2eaf29d83
3개의 변경된 파일9개의 추가작업 그리고 5개의 파일을 삭제
  1. 4 0
      .gitignore
  2. 2 2
      client/public/app.webmanifest
  3. 3 3
      client/public/index.html

+ 4 - 0
.gitignore

@@ -6,3 +6,7 @@ server/uploads/
 server/node_modules/
 .idea/
 **/.env.*
+emilia.conf
+myaha.conf
+client/emilia.service
+client/googleTranslate.json

+ 2 - 2
client/public/app.webmanifest

@@ -20,7 +20,7 @@
       "purpose": "maskable"
     }
   ],
-  "theme_color": "#3cb45a",
-  "background_color": "#3cb45a",
+  "theme_color": "#28793c",
+  "background_color": "#28793c",
   "display": "fullscreen"
 }

+ 3 - 3
client/public/index.html

@@ -20,11 +20,11 @@
     <link rel="apple-touch-icon" sizes="180x180" href="%PUBLIC_URL%/apple-touch-icon.png">
     <link rel="icon" type="image/png" sizes="32x32" href="%PUBLIC_URL%/favicon-32x32.png">
     <link rel="icon" type="image/png" sizes="16x16" href="%PUBLIC_URL%/favicon-16x16.png">
-    <link rel="mask-icon" href="%PUBLIC_URL%/safari-pinned-tab.svg" color="#3cb45a">
+    <link rel="mask-icon" href="%PUBLIC_URL%/safari-pinned-tab.svg" color="#28793c">
     <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
     <meta name="msapplication-TileColor" content="#28793c">
     <meta name="msapplication-config" content="%PUBLIC_URL%/browserconfig.xml">
-    <meta name="theme-color" content="#3cb45a">
+    <meta name="theme-color" content="#28793c">
 
     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
     <link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Neucha&display=swap" />
@@ -81,7 +81,7 @@
     <link rel="apple-touch-startup-image" media="screen and (device-width: 810px) and (device-height: 1080px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="%PUBLIC_URL%/10.2__iPad_landscape.png">
     <link rel="apple-touch-startup-image" media="screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="%PUBLIC_URL%/iPhone_11__iPhone_XR_portrait.png">
   </head>
-  <body style="margin: 0; height: 100%; overflow-x: hidden;">
+  <body style="margin: 0; height: 100%; overflow-x: hidden; background-color: #28793c">
     <div id="root" style="height: 100%"></div>
   </body>
 </html>