Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ <h2 class="device-qualification-form-header-title">{{ data.title }}</h2>
<mat-hint>Please enter device manufacturer name</mat-hint>
<mat-error
*ngIf="manufacturer.hasError('invalid_format')"
class="error-multiline"
role="alert"
aria-live="assertive">
<span
Expand All @@ -72,6 +73,7 @@ <h2 class="device-qualification-form-header-title">{{ data.title }}</h2>
<mat-hint>Please enter device name</mat-hint>
<mat-error
*ngIf="model.hasError('invalid_format')"
class="error-multiline"
role="alert"
aria-live="assertive">
<span
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ $form-height: 993px;
gap: 10px;
height: 100%;
overflow: hidden;
&:last-of-type {
&:has(.device-qualification-form-summary-container) {
grid-template-rows: min-content min-content 1fr min-content;
}
}
Expand Down Expand Up @@ -283,6 +283,11 @@ $form-height: 993px;
background: $white;
}

.manufacturer-field:has(.error-multiline),
.model-field:has(.error-multiline) {
padding-bottom: 14px;
}

@container qualification-form (height < 870px) {
.device-qualification-form-page {
overflow: scroll;
Expand All @@ -291,6 +296,7 @@ $form-height: 993px;
}
}
}

@container qualification-form (height < 580px) {
.device-qualification-form-page {
overflow: scroll;
Expand Down