Skip to content

Commit 71a40d0

Browse files
author
EC2 Default User
committed
Merge branch 'feature/ui-improvements'
2 parents d3de824 + e076c48 commit 71a40d0

File tree

11 files changed

+177
-8
lines changed

11 files changed

+177
-8
lines changed

src/ui/public/apple-touch-icon.png

570 Bytes
Loading

src/ui/public/browserconfig.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<browserconfig>
3+
<msapplication>
4+
<tile>
5+
<square150x150logo src="/logo192.png"/>
6+
<TileColor>#0066cc</TileColor>
7+
</tile>
8+
</msapplication>
9+
</browserconfig>

src/ui/public/favicon-16x16.png

126 Bytes
Loading

src/ui/public/favicon-32x32.png

163 Bytes
Loading

src/ui/public/favicon-64x64.png

228 Bytes
Loading

src/ui/public/favicon.ico

243 Bytes
Binary file not shown.

src/ui/public/index.html

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,24 @@
66

77
<head>
88
<meta charset="utf-8" />
9-
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
9+
<!-- Comprehensive favicon setup for all browsers -->
10+
<link rel="icon" type="image/x-icon" href="/favicon.ico?v=5" />
11+
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5" />
12+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?v=5" />
13+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?v=5" />
14+
<link rel="icon" type="image/png" sizes="192x192" href="/logo192.png?v=5" />
15+
<link rel="icon" type="image/png" sizes="512x512" href="/logo512.png?v=5" />
16+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=5" />
1017
<meta name="viewport" content="width=device-width, initial-scale=1" />
11-
<meta name="theme-color" content="#000000" />
18+
<meta name="theme-color" content="#0066cc" />
1219
<meta name="description" content="GenAI Intelligent Document Processing" />
13-
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
20+
<meta name="msapplication-TileColor" content="#0066cc" />
21+
<meta name="msapplication-config" content="/browserconfig.xml" />
1422
<!--
1523
manifest.json provides metadata used when your web app is installed on a
1624
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
1725
-->
18-
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
26+
<link rel="manifest" href="/manifest.json" />
1927
<!--
2028
Notice the use of %PUBLIC_URL% in the tags above.
2129
It will be replaced with the URL of the `public` folder during the build.

src/ui/public/logo192.png

418 Bytes
Loading

src/ui/public/logo512.png

1.5 KB
Loading

src/ui/src/App.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
SPDX-License-Identifier: Apache-2.0 */
33

44
:root {
5-
--amplify-primary-color: #ababab;
6-
--amplify-primary-tint: #3f6060;
7-
--amplify-primary-shade: #2dba89;
8-
--amplify-background-color: #fafafa;
5+
--amplify-primary-color: #0073bb;
6+
--amplify-primary-tint: #005a9f;
7+
--amplify-primary-shade: #4da6d9;
8+
--amplify-background-color: #f8f9fa;
99
--amplify-text-xxs: 0.75rem;
1010
--amplify-text-xs: 0.81rem;
1111
--amplify-text-sm: 1.2rem;

0 commit comments

Comments
 (0)