diff --git a/src/app/live/live.page.html b/src/app/live/live.page.html index a96853f..a602cf6 100644 --- a/src/app/live/live.page.html +++ b/src/app/live/live.page.html @@ -80,7 +80,7 @@ -
  • +
  • + +

    + Tap the match card to know more +

    + - +
    diff --git a/src/app/live/live.page.scss b/src/app/live/live.page.scss index 93708f3..65f0afd 100644 --- a/src/app/live/live.page.scss +++ b/src/app/live/live.page.scss @@ -176,6 +176,21 @@ padding: 15px; background-color: lighten($brand-blue, 1%); border-radius: 7px; + + .info { + display: flex; + align-items: flex-start; + justify-content: flex-start; + margin: 0px; + font-style: italic; + font-size: 1rem; + color: white; + + ion-icon { + width: 20px; + height: 20px; + } + } } table { diff --git a/src/app/live/live.page.ts b/src/app/live/live.page.ts index 6823d82..7e4d38a 100644 --- a/src/app/live/live.page.ts +++ b/src/app/live/live.page.ts @@ -280,8 +280,8 @@ export class LivePage implements OnInit { }); } - showMatchDetails() { - this.router.navigate(['/match-details', { match_id: this.currentMatch.Matchdetail.Match.Id }]); + showMatchDetails(matchId?: string | number) { + this.router.navigate(['/match-details', { match_id: matchId ? matchId : this.currentMatch.Matchdetail.Match.Id }]); } }