diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 61de99600..8f73944d9 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -1777,7 +1777,7 @@
"message": "We've centralized online privacy by integrating our signature as well as novel technologies."
},
"ghostery_dawn_onboarding_welcome_message": {
- "message": "Our browser protects your data and blocks bloatware so that you can surf privately and over 3x faster than with Chrome."
+ "message": "Ghostery Dawn protects your data from trackers so that you can surf securely and up to 3x faster than with Chrome."
},
"ghostery_dawn_onboarding_lets_do_this": {
"message": "Set up My Browser"
diff --git a/app/dawn-hub/Views/OnboardingViews/Step1_CreateAccountView/Step1_CreateAccountView.jsx b/app/dawn-hub/Views/OnboardingViews/Step1_CreateAccountView/Step1_CreateAccountView.jsx
index 9d7d4b824..1d78f02a7 100644
--- a/app/dawn-hub/Views/OnboardingViews/Step1_CreateAccountView/Step1_CreateAccountView.jsx
+++ b/app/dawn-hub/Views/OnboardingViews/Step1_CreateAccountView/Step1_CreateAccountView.jsx
@@ -100,6 +100,7 @@ const Step1_CreateAccountView = (props) => {
handleSkipButton(SKIP_ACCOUNT_CREATION)}>
{t('ghostery_dawn_onboarding_skip')}
+
@@ -160,11 +161,14 @@ const Step1_CreateAccountView = (props) => {
{(step === LOGIN) && renderSkipLink()}
{faqList.map(item => renderFAQListItem(item.icon, item.label, item.description))}
-
-
) : (
diff --git a/app/dawn-hub/Views/OnboardingViews/Step1_CreateAccountView/Step1_CreateAccountView.scss b/app/dawn-hub/Views/OnboardingViews/Step1_CreateAccountView/Step1_CreateAccountView.scss
index 10396b3d7..66cfce277 100644
--- a/app/dawn-hub/Views/OnboardingViews/Step1_CreateAccountView/Step1_CreateAccountView.scss
+++ b/app/dawn-hub/Views/OnboardingViews/Step1_CreateAccountView/Step1_CreateAccountView.scss
@@ -185,6 +185,8 @@ $color-create-account-form-error-red: #e74055;
.Step1_CreateAccountView__skip {
margin-top: -37px;
float: right;
+ display: flex;
+ align-items: center;
font-size: 16px;
color: $ghosty-blue;
text-decoration: underline;
@@ -196,6 +198,17 @@ $color-create-account-form-error-red: #e74055;
float: none;
}
}
+.Step1_CreateAccountView__arrow {
+ margin-left: 5px;
+ float: right;
+ height: 10px;
+ width: 10px;
+ border-left: 2px solid $tundora;
+ border-top: 2px solid $tundora;
+ cursor: pointer;
+ border-color: $ghosty-blue;
+ transform: rotate(135deg);
+}
.Step1_CreateAccountView__learnMoreContainer {
margin: 25px auto 0 auto;
width: 251px;
diff --git a/app/dawn-hub/Views/OnboardingViews/Step1_CreateAccountView/__tests__/__snapshots__/Step1_CreateAccountView.test.jsx.snap b/app/dawn-hub/Views/OnboardingViews/Step1_CreateAccountView/__tests__/__snapshots__/Step1_CreateAccountView.test.jsx.snap
index 41f969631..733e26fbe 100644
--- a/app/dawn-hub/Views/OnboardingViews/Step1_CreateAccountView/__tests__/__snapshots__/Step1_CreateAccountView.test.jsx.snap
+++ b/app/dawn-hub/Views/OnboardingViews/Step1_CreateAccountView/__tests__/__snapshots__/Step1_CreateAccountView.test.jsx.snap
@@ -102,18 +102,25 @@ exports[`app/hub/Views/Step1_CreateAccountView component Snapshot tests with rea
-
-
`;