Is it possible to change the text case of Button text inside Material UI Button to sentence case with CSS?
https://mui.com/components/buttons/
The text inside the button - ADD FRIEND
should be transformed to sentence case as Add friend
.
I attempted to override the theme, however, it did not target the element in this manner. Please advise if achieving this is feasible.
createTheme({
components: {
MuiButton: {
styleOverrides: {
root: {
'&::first-letter': {
textTransform: 'uppercase',
},
},
}
}
}
});