Skip to content

Commit

Permalink
15863 fixed the red invalid state sizing issue and some reshaping (#573)
Browse files Browse the repository at this point in the history
* 15863 fixed the red invalid state sizing issue and some reshaping

* 15863 package json update

* 15863 fixed the red overflow and cut off issue

* 15863 removed dead negative spacing in restoration type
  • Loading branch information
PaulGarewal authored Oct 4, 2023
1 parent d3509ba commit 05b2754
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "business-create-ui",
"version": "5.5.4",
"version": "5.5.5",
"private": true,
"appName": "Create UI",
"sbcName": "SBC Common Components",
Expand Down
1 change: 1 addition & 0 deletions src/components/Restoration/RestorationType.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<v-radio-group
v-model="selectRestorationType"
class="mt-0 pt-0"
hide-details="auto"
@change="changeRestorationType()"
>
<v-radio
Expand Down
14 changes: 11 additions & 3 deletions src/views/Restoration/RestorationBusinessName.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,19 @@
>
<RestorationType
id="restoration-type"
class="mb-n5"
:class="{ 'approval-restoration-invalid-section': invalidSectionRestoration }"
/>

<!-- Divider b/w Restoration and Approval type -->
<v-divider class="mb-11 mr-5 ml-5"></v-divider>
<div
class="px-5"
:class="{ 'invalid-divider': invalidSectionRestoration && invalidSectionApproval }"
>
<v-divider />
</div>

<ApprovalType
id="approval-type"
class="mt-n10"
:class="{ 'approval-restoration-invalid-section': invalidSectionApproval }"
/>
</v-card>
Expand Down Expand Up @@ -167,4 +170,9 @@ header p {
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
#restoration-type-section .v-card .invalid-divider {
border-left: 3px solid $BCgovInputError !important;
padding-left: calc(20px - 3px) !important;
}
</style>

0 comments on commit 05b2754

Please sign in to comment.