Skip to content

Commit f0ef6f3

Browse files
committed
Fix background
1 parent f896587 commit f0ef6f3

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

web/src/app/projects/[project-id]/edit/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ export default function ProjectEdit() {
8181
<BackButton href={`/projects/${projectId}`}></BackButton>
8282
<Box
8383
style={{
84-
backgroundColor: "#f6f8fa",
84+
backgroundColor: "#020408",
8585
borderWidth: 1,
8686
borderStyle: "solid",
87-
borderColor: "#d0d7de",
87+
borderColor: "#3d444d",
8888
borderRadius: 6,
8989
padding: 24,
9090
}}

web/src/app/projects/[project-id]/endpoints/[endpoint-id]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ export default function EndpointShow() {
384384
borderBottomWidth: 1,
385385
marginTop: 16,
386386
borderBottomStyle: "solid",
387-
borderColor: "#d0d7de",
387+
borderColor: "#3d444d",
388388
}}
389389
></Box>
390390
{isDeleteDialogOpen && (
@@ -435,7 +435,7 @@ export default function EndpointShow() {
435435
borderWidth: 1,
436436
padding: 16,
437437
borderRadius: 4,
438-
borderColor: "#d0d7de",
438+
borderColor: "#3d444d",
439439
}}
440440
>
441441
{/* @ts-expect-error chart types are not consistent */}

web/src/app/projects/[project-id]/endpoints/create/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ export default function EndpointsCreate() {
8989
<BackButton href={`/projects/${projectId}`}></BackButton>
9090
<Box
9191
style={{
92-
backgroundColor: "#f6f8fa",
92+
backgroundColor: "#020408",
9393
borderWidth: 1,
9494
borderStyle: "solid",
95-
borderColor: "#d0d7de",
95+
borderColor: "#3d444d",
9696
borderRadius: 6,
9797
padding: 24,
9898
}}

web/src/app/projects/[project-id]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ export default function ProjectShow() {
269269
borderBottomWidth: 1,
270270
marginTop: 16,
271271
borderBottomStyle: "solid",
272-
borderColor: "#d0d7de",
272+
borderColor: "#3d444d",
273273
}}
274274
></Box>
275275
{isDeleteDialogOpen && (
@@ -329,7 +329,7 @@ export default function ProjectShow() {
329329
)}
330330
</Box>
331331
<div>
332-
<Heading as="h2" style={{ marginTop: 256 }} variant="medium">
332+
<Heading as="h2" style={{ marginTop: 24 }} variant="medium">
333333
<LinkIcon size={24} />
334334
<Text style={{ marginLeft: 8 }}>Endpoints</Text>
335335
</Heading>

web/src/app/projects/create/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ export default function ProjectCreate() {
6565
<BackButton href={"/"}></BackButton>
6666
<Box
6767
style={{
68-
backgroundColor: "#f6f8fa", // canvas.inset
68+
backgroundColor: "#020408", // canvas.inset
6969
borderWidth: 1,
7070
borderStyle: "solid",
71-
borderColor: "#d0d7de", // border.default
71+
borderColor: "#3d444d", // border.default
7272
borderRadius: 8,
7373
padding: 24,
7474
}}

web/src/app/projects/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default function ProjectIndex() {
6565
borderBottomWidth: 1,
6666
marginTop: 16,
6767
borderBottomStyle: "solid",
68-
borderColor: "#d0d7de",
68+
borderColor: "#3d444d",
6969
}}
7070
></Box>
7171

0 commit comments

Comments
 (0)