forked from bcgov/embc-ess
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EMBCESSMOD 173 - Insurance info pop up (bcgov#872)
* Add info popup to Yes option * Update insurance modal styles to match wireframes
- Loading branch information
1 parent
2c6eb1c
commit 9df5b99
Showing
3 changed files
with
30 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 14 additions & 9 deletions
23
embc-app/ClientApp/src/app/shared/modals/insurance-info/insurance-info.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
<div class="info-header"> | ||
<button type="button" class="close close-padding" aria-label="Close" (click)="activeModal.close()"> | ||
<span aria-hidden="true">×</span> | ||
</button> | ||
</div> | ||
<div class="modal-body"> | ||
<p>Please continue the registration and contact your insurance provider for support.</p> | ||
<p>Emergency Support Services is intended for those without supports such as insurance coverage or friends and family who can assist.</p> | ||
<button type="button" class="btn btn-primary" (click)="activeModal.close()">Close</button> | ||
<div class="info-container"> | ||
<div class="info-header"> | ||
<button type="button" class="close close-padding" aria-label="Close" (click)="activeModal.close()"> | ||
<span aria-hidden="true">×</span> | ||
</button> | ||
</div> | ||
<div class="modal-body"> | ||
<p>Please continue the registration and contact your insurance provider for support.</p> | ||
<p>Emergency Support Services is intended for those without supports such as insurance coverage or friends and | ||
family who can assist.</p> | ||
<div class="btn-container"> | ||
<button type="button" class="btn btn-primary" (click)="activeModal.close()">Close</button> | ||
</div> | ||
</div> | ||
</div> |
15 changes: 15 additions & 0 deletions
15
embc-app/ClientApp/src/app/shared/modals/insurance-info/insurance-info.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,28 @@ | ||
@import "~src/styles/_defaults.scss"; | ||
$bgColor: #f1f4fa; | ||
$closeColor: #3d5d8d; | ||
|
||
.close-padding { | ||
padding: 5px; | ||
} | ||
|
||
.close-color { | ||
color: $closeColor; | ||
} | ||
|
||
.cursor-pointer { | ||
cursor: pointer; | ||
} | ||
|
||
.info-container { | ||
background-color: $bgColor; | ||
} | ||
|
||
.info-header { | ||
display: list-item; | ||
} | ||
|
||
.btn-container { | ||
display: flex; | ||
justify-content: center; | ||
} |