Skip to content

Commit

Permalink
fix(material/form-field): focus indication not working for standard a…
Browse files Browse the repository at this point in the history
…ppearance in high contrast mode (#21805)

There was a syntax error which prevented the focus indication from rendering
in high contrast mode.

Fixes #21780.

(cherry picked from commit 0484310)
  • Loading branch information
crisbeto authored and annieyw committed Feb 9, 2021
1 parent 210c7e0 commit fdce96d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/material/form-field/form-field-standard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ $mat-form-field-standard-padding-top: 0.75em !default;

@include cdk-high-contrast(active, off) {
height: 0;
border-top: $height;
border-top: solid $height;
}
}

Expand Down

0 comments on commit fdce96d

Please sign in to comment.