I'm currently working on a simple email input form with a submit button. Here are the adjustments I want to make:
- Set the background of the email input to white
- Ensure that the submit button matches the height of the input field
However, my attempts to adjust the input background using CSS only affect a small section within the Angular Material input field. Additionally, changing the height property to 100% doesn't seem to impact the button height as desired.
I believe there is a straightforward solution to this issue. Can anyone provide assistance?
<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>