diff --git a/ghost/admin/app/components/dashboard/onboarding-checklist.hbs b/ghost/admin/app/components/dashboard/onboarding-checklist.hbs index 15c9a70fe0..b03e22850d 100644 --- a/ghost/admin/app/components/dashboard/onboarding-checklist.hbs +++ b/ghost/admin/app/components/dashboard/onboarding-checklist.hbs @@ -1,20 +1,25 @@
{{#if (feature "nightShift")}} - +
+ +
+
{{else}} - +
+ +
{{/if}} {{#if this.onboarding.allStepsCompleted}}

You’re all set.

{{else}}

Let’s get started!

-

Welcome! It's time to set up {{get-setting "title"}}.

+

Welcome! It’s time to set up {{get-setting "title"}}.

{{/if}}
diff --git a/ghost/admin/app/styles/app-dark.css b/ghost/admin/app/styles/app-dark.css index bb2bff0dfe..b2dfb0f5d0 100644 --- a/ghost/admin/app/styles/app-dark.css +++ b/ghost/admin/app/styles/app-dark.css @@ -1389,6 +1389,15 @@ Onboarding checklist */ border: 1px solid var(--lightgrey); } +.gh-onboarding-ghost-logo-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: hsl(216deg 11% 70% / 1%); +} + /* --------------------------------- Onboarding checklist: Share publication modal */ diff --git a/ghost/admin/app/styles/layouts/dashboard.css b/ghost/admin/app/styles/layouts/dashboard.css index 3a1ce798bd..c4f4e0f23d 100644 --- a/ghost/admin/app/styles/layouts/dashboard.css +++ b/ghost/admin/app/styles/layouts/dashboard.css @@ -2778,10 +2778,20 @@ Onboarding checklist */ } .gh-onboarding-header { + display: flex; + flex-direction: column; + align-items: center; text-align: center; margin-bottom: 40px; } +.gh-onboarding-ghost-logo-wrapper { + position: relative; + width: 80px; + height: 80px; + margin-bottom: 24px; +} + .gh-onboarding-header h2 { justify-content: center; }