Skip to content

Commit

Permalink
fix(FSADT1-889): fixing notification body content
Browse files Browse the repository at this point in the history
  • Loading branch information
paulushcgcj committed Sep 25, 2023
1 parent f6ec430 commit 8ead99d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 4 additions & 2 deletions frontend/src/assets/styles/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ hr {
width: 100%;
}

.cds--inline-notification-content{
width:100%;
}

div#app {
height: 100vh;
display: flex;
Expand Down Expand Up @@ -857,5 +861,3 @@ cds-modal {
}
}



Original file line number Diff line number Diff line change
Expand Up @@ -239,13 +239,14 @@ watch([selectedOption], () => {
<cds-inline-loading status="active" v-if="showDetailsLoading">Loading client details...</cds-inline-loading>
<div v-if="(showAutoCompleteInfo && selectedOption === ClientTypeEnum.R) || showGoodStandingError || showDuplicatedError">
<cds-inline-notification
v-shadow="2"
v-if="showAutoCompleteInfo && selectedOption === ClientTypeEnum.R"
low-contrast="true"
open="true"
kind="info"
hide-close-button="true"
title="If the name of your registered business does not appear in the list, follow these steps:">
<div>
<div class="cds--inline-notification-content">
<ol type="1" class="bulleted-list">
<li class="body-compact-01">
Log into Manage Account in
Expand Down Expand Up @@ -274,7 +275,7 @@ watch([selectedOption], () => {
kind="error"
title="Not in good standing with BC Registries"
>
<p>
<p class="cds--inline-notification-content">
Your request for a client number cannot go ahead because “{{
formData.businessInformation.businessName
}}” is not in good standing with BC Registries. Go to your
Expand All @@ -296,7 +297,7 @@ watch([selectedOption], () => {
kind="error"
title="Client already exists"
>
<p>
<p class="cds--inline-notification-content">
Looks like “{{ formData.businessInformation.businessName }}” has a
client number. Select the 'Receive email and logout' button below to
have it sent to you at {{ formData.location.contacts[0].email }}
Expand Down

0 comments on commit 8ead99d

Please sign in to comment.