Skip to content
Snippets Groups Projects
Commit 15257385 authored by pnogal's avatar pnogal Committed by Paulina Nogal
Browse files

Fix color text for hint and label for invalid subject on search form

parent 0fd00252
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@
</mat-form-field>
<mat-form-field class="example-full-width">
<mat-hint align="end" *ngIf="courseSearchForm?.get('subject')?.invalid">
<mat-hint class="invalid-subject-hint" align="start" *ngIf="courseSearchForm?.get('subject')?.invalid">
Please select an existing subject or &lsquo;All&rsquo;
</mat-hint>
......
......@@ -129,6 +129,13 @@ body {
font-size: 14px;
}
.add-course-form {
.mat-form-field.mat-form-field-invalid .mat-form-field-label,
.invalid-subject-hint {
color: rgb(255, 78, 78);
}
}
.mat-form-field.mat-form-field-invalid {
.mat-form-field-ripple {
background-color: #0479a8 !important;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment