I’ve a padding in my app that I’m unable to get rid off.
ion-app.md [padding] .scroll-content { padding: 16px; }
Can anybody help me getting rid off from it.
I’ve a padding in my app that I’m unable to get rid off.
ion-app.md [padding] .scroll-content { padding: 16px; }
Can anybody help me getting rid off from it.
Remove the ‘padding’ attribute of your ion-content HTML tag.
From:
<ion-content padding>
...
</ion-content>
To:
<ion-content>
...
</ion-content>
Thanks @ramon it worked!!