Native scroll, pull to refresh and padding content problem

Hi all.
I’m building a app with native scroll on a content with padding. I see a little mistake when pulling, the content change width and overflow outside app.
I’m using this css trick for solve the problem:

ion-content.padding.overflow-scroll > .scroll.overscroll { padding-right: 20px; }

But I believe this isn’t a elegant solution for this problem.

<ion-view view-title="Playlists"> <ion-content class="padding" overflow-scroll="true"> <ion-refresher pulling-text="Pull to refresh..."> </ion-refresher> <ion-list> <ion-item ng-repeat="playlist in playlists" href="#/app/playlists/{{playlist.id}}"> {{playlist.title}} </ion-item> </ion-list> </ion-content> </ion-view>