How can I disable showing underline to material-ui-pickers?
sandbox https://codesandbox.io/s/l2ykr7kwvz?from-embed
I want to removing underline to its TextField
.
I tried
disableUnderline={true}
underlineStyle={{display: 'non'}}
showingUnderline={false}
But nothing works, How can I hide underline?
<DatePicker
underlineStyle={{display: 'none'}}
value={selectedDate}
onChange={this.handleDateChange}
animateYearScrolling={false}
/>
underline
UI is added into:before
pseudo element. But there are no way to override it (I don't find any docs). I've opened a new issue request on their GitHub repo. github.com/dmtrKovalenko/material-ui-pickers/issues/423 – Slyke