From eca79afced905f26113b0804ba94376bfb071c17 Mon Sep 17 00:00:00 2001 From: James Ritchie Date: Tue, 19 Nov 2024 13:03:20 +0000 Subject: [PATCH] Added some padding around the Setup Your Dev callout on Task page --- .../route.tsx | 74 ++++++++++--------- 1 file changed, 38 insertions(+), 36 deletions(-) diff --git a/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam._index/route.tsx b/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam._index/route.tsx index e8738659c..8e439ae7b 100644 --- a/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam._index/route.tsx +++ b/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam._index/route.tsx @@ -391,43 +391,45 @@ function UserHasNoTasks() { const [open, setOpen] = useState(false); return ( - setOpen((o) => !o)} - > - {open ? "Close" : "Setup your dev environment"} - - } - > - {open ? ( -
- Get setup in 3 minutes +
+ setOpen((o) => !o)} + > + {open ? "Close" : "Setup your dev environment"} + + } + > + {open ? ( +
+ Get setup in 3 minutes - - - You'll need to open a terminal at the root of your project. - - - - - - - - - - - - This page will automatically refresh. - -
- ) : ( - "Your DEV environment isn't setup yet." - )} -
+ + + You'll need to open a terminal at the root of your project. + + + + + + + + + + + + This page will automatically refresh. + +
+ ) : ( + "Your DEV environment isn't setup yet." + )} + +
); }