Is there a way to right align multiple buttons or icons within a list item?
I have this html and would like all the buttons / icons (depending on which i can use) to line up horiztonally, but on the right, but currently they overlap
<a class="item item-avatar item-button-right" href="#/score/{{ scorecard.id }}/{{ score.id }}">
<img ng-if="score.isScored()" src="img/ok.png" />
<img ng-if="!score.isScored()" src="img/help2.png" />
<p>{{ score.name }}</p>
<button ng-if="score.hasComments();" class="button button-icon button-clear ion-ios7-chatbubble"></button>
<button ng-if="score.documents.length > 0" class="button button-icon button-clear ion-ios7-camera"></button>
<button ng-if="score.actionDate != null" class="button button-icon button-clear ion-ios7-person"></button>
</a>