Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increased button height for x-large text mode #1839

Merged
merged 3 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
changed from height adjustment to no-wrap on text
  • Loading branch information
gittins7 committed Dec 6, 2024
commit 18de26f9efb7c9c7762bfc1333c14f07f1aa92ee
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
<ion-col size="48" *ngIf="!everyQuestionHasOutcome()">
<ion-button
id="vehicle-check-cat-c-select-questions-btn"
[class]="'mes-return-button select-questions-btn ' + getTextZoomClass()"
class="mes-return-button select-questions-btn"
(click)="openVehicleChecksModal()"
>
<label id="select-questions-label">Select questions</label>
<label id="select-questions-label" [class]="getTextZoomClass()">Select questions</label>
</ion-button>
</ion-col>
<ion-col size="48" class="vehicle-check-score ion-align-self-center" *ngIf="everyQuestionHasOutcome()">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
}

.text-zoom-x-large {
height: 75px;
text-wrap: nowrap;
}

.vehicle-check-score {
Expand Down