How do I style label color?
The following code doesn't work:
<style>
.mdc-floating-label{
color: #808080;
}
.mdc-floating-label--float-above{
color: #808080;
}
.mdc-floating-label--shake{
color: #808080;
}
</style>
Add !important
at the end of color values.
<style>
.mdc-floating-label{
color: #808080 !important;
}
.mdc-floating-label--float-above{
color: #808080 !important;
}
.mdc-floating-label--shake{
color: #808080 !important;
}
</style>