I'm looking to adjust the label fontSize in the material ui TextField component. I've discovered the InputLabelProps property which has been helpful, but as shown in the image below, the label appears too cramped when focused.
https://i.sstatic.net/7XQQz.png
Below is my implementation of the TextField:
<TextField {...params} InputLabelProps={{
style : {color: '#518eb9', fontSize: 18, fontWeight: 1000}
}} label="Hovedkategori" />
I have identified that the focused label actually comes from another tag:
<legend class="css-1ftyaf0"><span>Hovedkategori</span></legend>