(@fuse/overrides/angular-material) Fixed: Normal border color of the text field overrides the invalid and focus border colors on dark themes

This commit is contained in:
sercan 2021-09-02 23:48:26 +03:00
parent 08aec7c3db
commit 9f97d74911

View File

@ -434,7 +434,7 @@
/* Border color */
.mat-form-field-flex {
@apply border-warn #{'!important'};
@apply border-warn dark:border-warn #{'!important'};
}
}
}
@ -446,7 +446,7 @@
/* Background color */
.mat-form-field-flex {
@apply bg-card #{'!important'};
@apply bg-card dark:bg-card #{'!important'};
}
}
}
@ -458,7 +458,7 @@
/* Border color */
.mat-form-field-flex {
@apply border-primary #{'!important'};
@apply border-primary dark:border-primary #{'!important'};
}
}
}