This question may be a little stupid but I am not that familiar with CSS and googling the problem didnt get the desired result.
So I have this ion-card-header:
This is the code:
<ion-card-header>
<ion-card-title>{{enActivity.customer}}</ion-card-title>
<ion-card-title>{{enActivity.startTime | date :'HH:mm'}}</ion-card-title>
<ion-card-title>Aktivitäten: {{enActivity.activities.length}}</ion-card-title>
<ion-icon name="chevron-forward-outline"></ion-icon>
</ion-card-header>
I would like to place the last item, the ion-icon on the right sideof the card-header. How do I achieve this? I am a little confused.
In the picture, I would like to place the icon in the marked position.
This is what I have tried so far
ion-icon {
float: right;
}