Ion-nav-buttons isn`t vertical aligned in new Android versions

Here is my code:
<ion-nav-title>
            <div class="title page-title" >
                <div class="title">title</div>
            </div>
        </ion-nav-title>
        <ion-nav-buttons side="left">
            <button class="button button-icon ion-help-circled" ng-click="goTo()"></button>
        </ion-nav-buttons>
        <ion-nav-buttons side="right">
            <button class="button button-icon ion-ios-gear" ng-click="goTo()"></button>
        </ion-nav-buttons>    

In Chrome it looks ok:
image

But in Android device with android version 4.4.X buttons not aligned vertical, they are closer to top:
image

How can i fix it?