Select form element not showing; SOLVED

For some reason, my select is not showing text. You can switch correctly however it is not visible.

SOLUTION

It appears it was a CSS padding problem. It was hiding the text!
Just added this to my app.css

select {
padding-top:5px !important;
padding-bottom:0px !important;
}

Cheers

1 Like

would you mind sharing the code? that looks great!!