Having trouble adjusting the font sizes on Material-UI's RaisedButton for React and ensuring that the button scales properly along with it.
<RaisedButton
label={<span className="buttonText">Log in Here</span>}
/>
CSS:
.buttonText {
font-size: 63px;
}
Although the text size changes, the button itself does not scale accordingly. Seeking advice on how to resolve this issue - aiming for the button to scale proportionally with the text size.