Skip to content

Commit ab0c121

Browse files
authored
26504 - Transactions Partial Credits / Applied Credits / Partial Refund grouping (bcgov#3469)
1 parent f9b5530 commit ab0c121

File tree

13 files changed

+852
-109
lines changed

13 files changed

+852
-109
lines changed

auth-web/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

auth-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "auth-web",
3-
"version": "2.10.16",
3+
"version": "2.10.17",
44
"appName": "Auth Web",
55
"sbcName": "SBC Common Components",
66
"private": true,

auth-web/src/assets/scss/layout.scss

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,24 @@
8888
.soft-corners-top {
8989
border-radius: 5px 5px 0 0;
9090
}
91+
92+
// Expand just for the transactions page.
93+
.transaction-container .container,
94+
.transaction-container .v-container,
95+
.transaction-container .view-container,
96+
.transaction-container .app-body,
97+
.transaction-container .v-app {
98+
max-width: 90% !important;
99+
}
100+
101+
.app-body .transaction-container ~ .container,
102+
.app-body .transaction-container ~ .v-container,
103+
.app-body .transaction-container ~ .view-container {
104+
max-width: 90% !important;
105+
}
106+
107+
.app-body:has(.transaction-container) .container,
108+
.app-body:has(.transaction-container) .v-container,
109+
.app-body:has(.transaction-container) .view-container {
110+
max-width: 90% !important;
111+
}

auth-web/src/components/auth/account-settings/transaction/Transactions.vue

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,16 @@
1515
</v-fade-transition>
1616
<header
1717
v-if="title"
18-
class="view-header align-center mb-5 ml-4"
18+
class="view-header align-center mb-5 ml-2"
1919
>
2020
<h2 class="view-header__title">
2121
{{ title }}
2222
</h2>
2323
</header>
24-
<section v-if="showCredit && (hasPadCredit || hasObCredit)">
24+
<section
25+
v-if="showCredit && (hasPadCredit || hasObCredit)"
26+
class="ml-4"
27+
>
2528
<v-divider class="mb-8" />
2629
<div class="credit-header-row">
2730
<span class="font-weight-bold">Account Credit Available:</span>

0 commit comments

Comments
 (0)