Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
carolcarpenter committed Jan 7, 2025
1 parent 08706a2 commit 7b2b755
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { FormErrorStateMatcher } from '@app/shared/directives/form-error-state-m
template: `
<form [formGroup]="form" novalidate>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12" [ngClass]="isWizardStep ? 'col-xxl-10 col-xl-10 mx-auto' : ''">
<div [ngClass]="isWizardStep ? 'col-md-8 col-sm-12 mx-auto' : 'col-12'">
<div class="row">
<div class="col-xl-6 col-lg-6 col-md-12">
<mat-form-field>
Expand Down Expand Up @@ -43,7 +43,7 @@ import { FormErrorStateMatcher } from '@app/shared/directives/form-error-state-m
<div class="text-primary-color fs-6 mb-1">Height</div>
<div
class="col-lg-6 col-md-12 col-sm-12"
[ngClass]="heightUnitCode.value === heightUnitCodes.Inches ? 'col-xl-4' : 'col-xl-6'"
[ngClass]="heightUnitCode.value === heightUnitCodes.Inches ? 'col-xl-3' : 'col-xl-6'"
>
<mat-form-field>
<mat-label>
Expand All @@ -57,7 +57,7 @@ import { FormErrorStateMatcher } from '@app/shared/directives/form-error-state-m
</mat-error>
</mat-form-field>
</div>
<div class="col-xl-4 col-lg-6 col-md-12" *ngIf="heightUnitCode.value === heightUnitCodes.Inches">
<div class="col-xl-3 col-lg-6 col-md-12" *ngIf="heightUnitCode.value === heightUnitCodes.Inches">
<mat-form-field>
<mat-label>Number of Inches</mat-label>
<input matInput formControlName="heightInches" [errorStateMatcher]="matcher" mask="09" />
Expand All @@ -68,8 +68,8 @@ import { FormErrorStateMatcher } from '@app/shared/directives/form-error-state-m
</mat-form-field>
</div>
<div
class="col-lg-6 col-md-12 col-sm-12"
[ngClass]="heightUnitCode.value === heightUnitCodes.Inches ? 'col-xl-4' : 'col-xl-6'"
class="col-xl-6 col-md-12 col-sm-12"
[ngClass]="heightUnitCode.value === heightUnitCodes.Inches ? 'col-lg-12' : 'col-lg-6'"
>
<mat-form-field>
<mat-label>Units</mat-label>
Expand Down

0 comments on commit 7b2b755

Please sign in to comment.