From f9f517ae51e904da00d5877818be64a8949d24df Mon Sep 17 00:00:00 2001 From: Ahmed Bouhuolia Date: Wed, 14 Oct 2020 13:25:20 +0200 Subject: [PATCH] feat: optimize setup style pages. --- client/src/components/Dashboard/Dashboard.js | 8 ++--- .../containers/Setup/SetupInitializingForm.js | 2 +- .../src/containers/Setup/SetupLeftSection.js | 2 +- client/src/style/pages/authentication.scss | 2 +- .../src/style/pages/register-wizard-page.scss | 30 ++++++++++++------- 5 files changed, 26 insertions(+), 18 deletions(-) diff --git a/client/src/components/Dashboard/Dashboard.js b/client/src/components/Dashboard/Dashboard.js index 32d3ff487..dbc19c433 100644 --- a/client/src/components/Dashboard/Dashboard.js +++ b/client/src/components/Dashboard/Dashboard.js @@ -22,13 +22,13 @@ function Dashboard({ // #withSettings requestFetchOptions, }) { - // const fetchOptions = useQuery( - // ['options'], () => requestFetchOptions(), - // ); + const fetchOptions = useQuery( + ['options'], () => requestFetchOptions(), + ); return ( - + diff --git a/client/src/containers/Setup/SetupInitializingForm.js b/client/src/containers/Setup/SetupInitializingForm.js index 469bb1b7f..37dc4b6c9 100644 --- a/client/src/containers/Setup/SetupInitializingForm.js +++ b/client/src/containers/Setup/SetupInitializingForm.js @@ -37,7 +37,7 @@ function SetupInitializingForm({ It's time to make your accounting really simple!

- while we set up your account,please remember to verify your account by + while we set up your account, please remember to verify your account by clicking on the link we sent to yout registered email address

diff --git a/client/src/containers/Setup/SetupLeftSection.js b/client/src/containers/Setup/SetupLeftSection.js index ae56c4db4..41581dec3 100644 --- a/client/src/containers/Setup/SetupLeftSection.js +++ b/client/src/containers/Setup/SetupLeftSection.js @@ -47,7 +47,7 @@ function SetupLeftSection({
- Your oragnization ID: { currentOrganizationId }, + Oragnization ID: { currentOrganizationId },
diff --git a/client/src/style/pages/authentication.scss b/client/src/style/pages/authentication.scss index da1b2bb82..226474cf0 100644 --- a/client/src/style/pages/authentication.scss +++ b/client/src/style/pages/authentication.scss @@ -106,7 +106,7 @@ h3 { font-weight: 500; font-size: 22px; - color: #444; + color: #2d2b43; margin: 0 0 12px; } diff --git a/client/src/style/pages/register-wizard-page.scss b/client/src/style/pages/register-wizard-page.scss index 4baf40271..74e6c8475 100644 --- a/client/src/style/pages/register-wizard-page.scss +++ b/client/src/style/pages/register-wizard-page.scss @@ -196,13 +196,16 @@ padding: 45px 0 20px; &__title-wrap{ - margin-bottom: 20px; + margin-bottom: 32px; h1 { margin-top: 0; margin-bottom: 10px; color: #565e6c; } + .paragraph{ + opacity: 0.75; + } } &__form{ @@ -252,28 +255,33 @@ background: rgba(92, 112, 128, 0.2); border-radius: 40px; display: block; - height: 8px; + height: 6px; overflow: hidden; position: relative; width: 80%; margin: 0 auto; + + .bp3-progress-meter { + background-color: #809cb3; + } } &__title { text-align: center; margin-top: 35px; + h1 { - font-size: 24px; - font-weight: 700; - color: #000; - // color: #6d6d6d; + font-size: 22px; + font-weight: 600; + color: #454c59; + margin-top: 0; + margin-bottom: 14px; } .paragraph { - font-size: 15px; - line-height: 1.5; - padding: 0 20%; - } - + width: 70%; + margin: 0 auto; + color: #2e4266; + } } } \ No newline at end of file