My team at work recently went to Angular 4.3.3 from 4.3.0. After these changes, mdInput and md-input-container no longer function correctly. Before you could click into the in
I believe that I found an answer to the question. On my index.html I was linking to this:
<link href="https://rawgit.com/angular/material2-builds/master/prebuilt-themes/indigo-pink.css" rel="stylesheet">
However, when I removed that from the index.html and added this to styles.scss:
@import '~@angular/material/prebuilt-themes/indigo-pink.css';
it worked just fine and I didn't have the issues like before.