changing font size of material-ui buttons, and having the buttons scale?

前端 未结 5 1389
不思量自难忘°
不思量自难忘° 2021-01-18 02:46

I seem to be having an issue with changing the font sizes on Material-UI\'s (for React) RaisedButton and having the button itself scale properly with it.

<         


        
5条回答
  •  逝去的感伤
    2021-01-18 02:55

    It needs to be added with lineHeight as a style prop for even spacing:

      < RaisedButton style = {{lineHeight: '100px'}}
        label = 'lineHeight in style' / >
    

    Here's a fiddle with all of the different solutions: https://jsfiddle.net/botbotdotdot/kfph5cc2/

    Cheers

提交回复
热议问题