Center element in <ion-nav-buttons>

I want to center the <input> element in <ion-nav-buttons> in this code:

<ion-nav-buttons side="left"> <button class="button button-positive"> Ok </button> </ion-nav-buttons> <ion-nav-buttons style="align-self:center;"> <input type="text" placeholder="" ng-model="input.filename"> </ion-nav-buttons> <ion-nav-buttons side="right"> <button class="button button-assertive" ng-click="goBack()"> Cancel </button> </ion-nav-buttons>

How can i do?

try this:

<ion-nav-buttons side=right
<input type=“text” placeholder="" ng-model=“input.filename” style=“margin-right:16em”

ok thank you for your answer :slight_smile: