Hi there,
I’m using ion-card to display a number of app users. When I select the mobile view I see these strange ellipses scattered around.
Here’s my code:
<ion-header>
<ion-navbar color="hcolor"> </ion-navbar>
</ion-header>
<ion-content>
<ion-searchbar
[(ngModel)]="searchstring"
(input)="searchuser($event)"
placeholder="Search"
></ion-searchbar>
<ion-row center>
<ion-col text-center col-4 *ngFor="let key of filteredusers">
<ion-card>
<ion-card-header>
<ion-avatar item-left>
<img src="{{key.photoURL}}" />
</ion-avatar>
<ion-card-title class="font">
{{key.displayName}}
</ion-card-title>
<button class="btncolor" icon-only (click)="sendreq(key)">
<ion-icon name="md-add-circle"></ion-icon>
</button>
</ion-card-header>
</ion-card>
</ion-col>
</ion-row>
</ion-content>
Thanks for your help!