From 4e3b69934b2d52a99bf5370f806a4881f9507c02 Mon Sep 17 00:00:00 2001 From: Maria Martinez <77364706+mamartinezmejia@users.noreply.github.com> Date: Wed, 15 Nov 2023 15:50:12 -0800 Subject: [PATCH] feat: (#614) - Changes described in FSADT1-995 --- frontend/src/assets/styles/global.scss | 11 +++++------ frontend/src/pages/FormBCSCPage.vue | 21 ++++++++++----------- 2 files changed, 15 insertions(+), 17 deletions(-) diff --git a/frontend/src/assets/styles/global.scss b/frontend/src/assets/styles/global.scss index dfb8b324a0..35741b078b 100644 --- a/frontend/src/assets/styles/global.scss +++ b/frontend/src/assets/styles/global.scss @@ -236,7 +236,7 @@ hr { .cds--inline-notification-content { width: 100%; - font-size: 0.875rem; + font-size: 0.8rem; font-style: normal; font-weight: 400; } @@ -497,7 +497,7 @@ div#app { align-self: flex-start; display: flex; flex-direction: column; - gap: 3rem; + gap: 2rem; } .content-landing { @@ -1064,7 +1064,6 @@ cds-side-nav { flex:4; } - cds-accordion-item[open]:not([disabled])::part(content) ,:host(cds-accordion-item[open]:not([disabled])) .cds-ce--accordion__content--md { padding-right: 1rem !important; padding-top: 0rem; @@ -1403,7 +1402,7 @@ cds-tag { /* Large (from 1056px to 1311px) */ @media screen and (min-width: 1056px) and (max-width: 1311px) { .screen { - padding: 2.5rem 2rem; + padding: 0rem 2rem 2rem; align-items: center; } @@ -1579,7 +1578,7 @@ cds-tag { /* XXX-Large (1784px and above) */ @media screen and (min-width: 1784px) { .screen { - padding: 2.5rem 7.75rem; + padding: 1rem 7.75rem 2.5rem; align-items: center; } @@ -1620,4 +1619,4 @@ cds-tag { padding: 2.5rem 2.5rem 2.5rem 18.5rem; max-width: calc(100vw - 21rem); } -} \ No newline at end of file +} diff --git a/frontend/src/pages/FormBCSCPage.vue b/frontend/src/pages/FormBCSCPage.vue index b8dc8e1f49..855ea95742 100644 --- a/frontend/src/pages/FormBCSCPage.vue +++ b/frontend/src/pages/FormBCSCPage.vue @@ -16,8 +16,7 @@ Personal information

- Review the personal information below. It’s from your BC Services card.

- We use it to know who we're giving a number to and for communicating with clients. + Review the personal information below. It’s from your BC Services card. We use it to know who we're giving a number to and for communicating with clients.

@@ -44,23 +43,23 @@

-

Full name

-

{{ formData.businessInformation.businessName }}

+

Full name

+

{{ formData.businessInformation.businessName }}


-

Date of birth

-

{{ figmaFormattedDate }}

+

Date of birth

+

{{ figmaFormattedDate }}


-

Email address

-

{{ formData.location.contacts[0].email }}

+

Email address

+

{{ formData.location.contacts[0].email }}


-

Address

-

+

Address

+

{{ formData.businessInformation.address.streetAddress }}
{{ formData.businessInformation.address.city }}, {{ formData.businessInformation.address.province.value }}
{{ formData.businessInformation.address.country.text }}
@@ -334,7 +333,7 @@ const addContact = (autoFocus = true) => { ); if (autoFocus) { const focusIndex = newLength - 1; - setFocusedComponent(`addressname_${focusIndex}`); + setFocusedComponent(`role_${focusIndex}`); } return newLength; };