Does anyone know how to get dropdown fields in DatGrid showing properly? Setting the TextField height doesn't work as expected for me.
Example: https://codesandbox.io/s/prod-leftpad-eixec?file=/src/App.js
2 Answers
Change the value of property box-sizing to inital:
.MuiSelect-select.MuiSelect-select {
box-sizing: initial;
}
https://codesandbox.io/s/amazing-microservice-ner57?file=/src/styles.css:0-120