diff --git a/src/app/pages/debrief/debrief.page.html b/src/app/pages/debrief/debrief.page.html index c9c6924e3..990795ef5 100644 --- a/src/app/pages/debrief/debrief.page.html +++ b/src/app/pages/debrief/debrief.page.html @@ -8,10 +8,10 @@ >{{ 'debrief.title' | translate }} - {{pageState.candidateName$ | async}} - + Vehic diff --git a/src/app/pages/waiting-room-to-car/components/mot-components/alternate-mot-evidence/alternate-mot-evidence.component.html b/src/app/pages/waiting-room-to-car/components/mot-components/alternate-mot-evidence/alternate-mot-evidence.component.html index e2807fc0f..c22eb22bb 100644 --- a/src/app/pages/waiting-room-to-car/components/mot-components/alternate-mot-evidence/alternate-mot-evidence.component.html +++ b/src/app/pages/waiting-room-to-car/components/mot-components/alternate-mot-evidence/alternate-mot-evidence.component.html @@ -1,7 +1,7 @@
- + @@ -35,6 +35,7 @@
- You are in practice mode - - - - - - - - - Pass - - - - - Fail - - - - - No Details - + + + You are in practice mode + + + + + + + + + Pass + + + + + Fail + + + + + No Details + + + - + - Cancel + Cancel + diff --git a/src/app/pages/waiting-room-to-car/components/mot-components/practice-mode-mot-modal/practice-mode-mot-modal.component.scss b/src/app/pages/waiting-room-to-car/components/mot-components/practice-mode-mot-modal/practice-mode-mot-modal.component.scss index 7eab7190c..08bc8099a 100644 --- a/src/app/pages/waiting-room-to-car/components/mot-components/practice-mode-mot-modal/practice-mode-mot-modal.component.scss +++ b/src/app/pages/waiting-room-to-car/components/mot-components/practice-mode-mot-modal/practice-mode-mot-modal.component.scss @@ -4,7 +4,7 @@ @extend .modal-alert-wrapper; .modal-alert { - width: 400px; + width: 500px; } .modal-alert-header { @@ -20,4 +20,8 @@ color: var(--gds-black) } + .cancel-button { + color: var(--gds-black); + } + } diff --git a/src/app/pages/waiting-room-to-car/components/vehicle-registration/vehicle-registration.html b/src/app/pages/waiting-room-to-car/components/vehicle-registration/vehicle-registration.html index fa256af15..06b7f9fa6 100644 --- a/src/app/pages/waiting-room-to-car/components/vehicle-registration/vehicle-registration.html +++ b/src/app/pages/waiting-room-to-car/components/vehicle-registration/vehicle-registration.html @@ -14,14 +14,13 @@ - + - + - -
+ +
Enter the registration number
diff --git a/src/app/pages/waiting-room-to-car/components/vehicle-registration/vehicle-registration.ts b/src/app/pages/waiting-room-to-car/components/vehicle-registration/vehicle-registration.ts index b20960865..35107a997 100644 --- a/src/app/pages/waiting-room-to-car/components/vehicle-registration/vehicle-registration.ts +++ b/src/app/pages/waiting-room-to-car/components/vehicle-registration/vehicle-registration.ts @@ -7,6 +7,7 @@ import { PracticeModeMOTModal, PracticeModeMOTType, } from '@pages/waiting-room-to-car/components/mot-components/practice-mode-mot-modal/practice-mode-mot-modal.component'; +import { AccessibilityService } from '@providers/accessibility/accessibility.service'; import { MotHistoryApiService, MotHistoryWithStatus } from '@providers/mot-history-api/mot-history-api.service'; import { MotHistory, MotStatusCodes } from '@providers/mot-history-api/mot-interfaces'; import { ConnectionStatus, NetworkStateProvider } from '@providers/network-state/network-state'; @@ -56,7 +57,8 @@ export class VehicleRegistrationComponent implements OnChanges { constructor( public motApiService: MotHistoryApiService, public modalController: ModalController, - protected networkState: NetworkStateProvider + protected networkState: NetworkStateProvider, + protected accessibilityService: AccessibilityService ) {} get invalid(): boolean { @@ -206,4 +208,15 @@ export class VehicleRegistrationComponent implements OnChanges { isMOTNotValid() { return this.motData?.data?.status !== MotStatusCodes.NOT_VALID; } + + getMOTButtonColSize(zoomClass: string) { + switch (zoomClass) { + case 'text-zoom-x-large': + return 37; + case 'text-zoom-large': + return 33; + default: + return 30; + } + } }