Change autofill size

I have this input:

image

As you can see it is a simple password input. However, when the autofill is working, it shows like this:

image

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>
1 Like