I have this input:
As you can see it is a simple password input. However, when the autofill is working, it shows like this:
The background color for autofill should be the same size of the input.
Here you have the HTML code for this particular input:
<ion-input *ngIf="login.passwordCheck" class="ion-text-start"
type="password" placeholder="Contraseña" fill="outline"
[ngClass]="{ 'error': login.passwordNull || login.passwordWrong }" [(ngModel)]="login.password"
(keyup.enter)="login.loginButton()"></ion-input>