I have a pretty basic form of an e-mail input and submit button. I'm trying to do the following:
- Have the e-mail input background be white
- Have the Submit button be the same height as the input
When I try to change the background of the input in CSS, it only changes a small rectangle within the Angular Material input field. Also, the button doesn't change heights when I change the height property to 100%.
I'm sure I am missing something simple. Can anyone help?
<form>
<mat-form-field appearance="outline">
<mat-label>E-Mail</mat-label>
<input matInput placeholder="E-Mail" required>
</mat-form-field>
<button mat-raised-button color="primary" type="submit">Get Updates!</button>
</form>
