Is there a way to align text within a Material UI input text element? The code snippet below doesn't seem to have any effect. I am currently working with version 1.x of Material UI.
import {Input} from 'material-ui';
//Alignment attempt that didn't work
<Input
className="max-w-128 inline-block"
style = {{textAlign: 'center'}}
id="input-quantity"
inputStyle={{ textAlign: 'center' }}
//Also tried hintStyle as suggested in a bug
hintStyle={{ width: '600px', textAlign: 'center' }}
value={this.state.currentRecord.quantity}
onChange={this.handleCurrentRecordTextChange('quantity')}
/>