Skip to content

Commit 8a32e96

Browse files
committed
Design updates
1 parent 9e3e884 commit 8a32e96

File tree

10 files changed

+256
-299
lines changed

10 files changed

+256
-299
lines changed

apps/web/index.html

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,11 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link
6-
rel="icon"
7-
type="image/png"
8-
href="public/favicon-96x96.png"
9-
sizes="96x96"
10-
/>
11-
<link rel="icon" type="image/svg+xml" href="public/favicon.svg" />
12-
<link rel="shortcut icon" href="public/favicon.ico" />
13-
<link
14-
rel="apple-touch-icon"
15-
sizes="180x180"
16-
href="public/apple-touch-icon.png"
17-
/>
5+
<link rel="icon" type="image/png" href="/logo-orin.png" sizes="96x96" />
6+
<link rel="apple-touch-icon" sizes="180x180" href="/logo-orin.png" />
7+
<!-- <link rel="icon" type="image/svg+xml" href="public/favicon.svg" /> -->
8+
<!-- <link rel="shortcut icon" href="public/favicon.ico" /> -->
9+
<!-- <link rel="apple-touch-icon" sizes="180x180" href="public/apple-touch-icon.png" /> -->
1810
<link rel="manifest" href="public/site.webmanifest" />
1911
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2012

apps/web/public/logo-orin.png

64.9 KB
Loading

apps/web/src/components/ApiDialog/ApiKeyDialog.tsx

Lines changed: 5 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -19,69 +19,11 @@ export default function ApiKeyDialog({
1919
}: ApiKeyDialogProps) {
2020
return (
2121
<Dialog.Root open={showApiKey} onOpenChange={setShowApiKey}>
22-
<Dialog.Trigger>
23-
{phone ? (
24-
<Text size="2" weight="regular" mt="2px" style={{ color: "#000000" }}>
25-
API Key
26-
</Text>
27-
) : (
28-
<BetterButton>
29-
<svg
30-
width="20"
31-
height="20"
32-
viewBox="0 0 25 24"
33-
fill="none"
34-
xmlns="http://www.w3.org/2000/svg"
35-
>
36-
<g clipPath="url(#clip0_113_1449)">
37-
<path
38-
d="M17.25 7.75L21.75 12.08L17.25 16.25"
39-
stroke="#FFFFFF"
40-
strokeWidth="1.5"
41-
strokeLinecap="round"
42-
strokeLinejoin="round"
43-
/>
44-
<path
45-
d="M7.75 16.25L3.25 11.92L7.75 7.75"
46-
stroke="#FFFFFF"
47-
strokeWidth="1.5"
48-
strokeLinecap="round"
49-
strokeLinejoin="round"
50-
/>
51-
<path
52-
d="M10.75 19.25L14.25 4.75"
53-
stroke="#FFFFFF"
54-
strokeWidth="1.5"
55-
strokeLinecap="round"
56-
strokeLinejoin="round"
57-
/>
58-
</g>
59-
<defs>
60-
<clipPath id="clip0_113_1449">
61-
<rect
62-
width="24"
63-
height="24"
64-
fill="white"
65-
transform="translate(0.5)"
66-
/>
67-
</clipPath>
68-
</defs>
69-
</svg>
70-
<Text
71-
size="2"
72-
weight="medium"
73-
style={{ color: "hsla(0, 0%, 100%)" }}
74-
>
75-
API Key
76-
</Text>
77-
</BetterButton>
78-
)}
79-
</Dialog.Trigger>
8022
<Dialog.Content
8123
style={{
82-
backgroundColor: "#020809",
83-
boxShadow: "0 0 0 1px hsla(0, 0%, 100%, 0.1)",
84-
border: "1px solid hsla(0, 0%, 100%, 0.1)",
24+
backgroundColor: "#181A1B",
25+
boxShadow: "0 0 0 1px #232627",
26+
border: "1px solid #232627",
8527
outline: "none",
8628
borderRadius: "8px",
8729
width: "fit-content",
@@ -120,8 +62,9 @@ export default function ApiKeyDialog({
12062
gap="4"
12163
p="4"
12264
style={{
123-
border: "1px solid hsla(0, 0%, 100%, 0.2)",
65+
border: "1px solid #232627",
12466
borderRadius: "4px",
67+
background: "#232627",
12568
}}
12669
>
12770
<Text

apps/web/src/components/TaskTable/TaskTable.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ const TaskTable = ({ context = "extracts" }: { context?: "extracts" | "flows" })
317317
MuiSvgIcon: {
318318
styleOverrides: {
319319
root: {
320-
color: "#ffffff",
320+
color: "#222",
321321
height: "20px",
322322
width: "20px",
323323
},
@@ -383,9 +383,12 @@ const TaskTable = ({ context = "extracts" }: { context?: "extracts" | "flows" })
383383
styleOverrides: {
384384
root: {
385385
borderRadius: "6px",
386-
color: "#545454",
387-
"&.Mui-checked": {
388-
color: "#545454",
386+
color: "#222",
387+
'&.Mui-checked': {
388+
color: "#222",
389+
},
390+
'& .MuiSvgIcon-root': {
391+
color: "#222",
389392
},
390393
},
391394
},

0 commit comments

Comments
 (0)