Using Input components inside of a Paper component forces the Input labels to have a line-height css property of 100px, instead of their default (20px?). This pushes the labels below the input line/box. As in the example below, "Username" will render below the input box, while "Password" will render properly on the input box.

<Paper className={'e-text-indigo-400 e-background-white'}>
<Input type={'text'} name={'label'} label={'Username'}/>
</Paper>
<Input type={'text'} name={'label'} label={'Password'}/>
Using Input components inside of a Paper component forces the Input labels to have a line-height css property of 100px, instead of their default (20px?). This pushes the labels below the input line/box. As in the example below, "Username" will render below the input box, while "Password" will render properly on the input box.