When using ion-grid, how do I horizontally align the content of the cells to the left/right/center of the cell?
<ion-grid>
<ion-row>
<ion-col class="ion-align-self-left">
left
</ion-col>
<ion-col class="ion-align-self-right">
right
</ion-col>
</ion-row>
</ion-grid>
The content is always aligned to the left, I expect the text "right" to be aligned to the right of its own cell.
