Closed Apeopex closed 7 years ago
Label styling has an errant space that causes SASS compiled code to not apply Darken function.
https://github.com/mdbootstrap/bootstrap-material-design/blame/master/sass/mdb/free/_forms-basic.scss#L102
https://github.com/mdbootstrap/bootstrap-material-design/blame/master/css/mdb.css#L5893
label { font-size: $label-font-size; color: darken ($input-border-color, 90%); }
The space between darken and the parenthesis open is invalid and causes the following incorrect css:
label { font-size: 0.8rem; color: darken #ccc, 90%; }
fixed
Label styling has an errant space that causes SASS compiled code to not apply Darken function.
https://github.com/mdbootstrap/bootstrap-material-design/blame/master/sass/mdb/free/_forms-basic.scss#L102
https://github.com/mdbootstrap/bootstrap-material-design/blame/master/css/mdb.css#L5893
The space between darken and the parenthesis open is invalid and causes the following incorrect css: