diff --git a/src/app/home/home.page.scss b/src/app/home/home.page.scss index f299258..de071fd 100644 --- a/src/app/home/home.page.scss +++ b/src/app/home/home.page.scss @@ -52,7 +52,7 @@ ion-slides { text-align: left; height: 100%; position: relative; - box-shadow: 10px 10px 15px -7px darken($brand-blue, 10%); + box-shadow: 10px 10px 15px -7px darken($brand-blue, 30%); transition: transform 0.3s; transform: scale(0.9); diff --git a/src/app/live/live.page.html b/src/app/live/live.page.html index a602cf6..f8e77ea 100644 --- a/src/app/live/live.page.html +++ b/src/app/live/live.page.html @@ -48,7 +48,7 @@ - Batsman + {{ currentMatch.Teams[inning.Battingteam].Name_Short }} Score diff --git a/src/app/match-details/match-details.page.html b/src/app/match-details/match-details.page.html index 438b02d..897afa6 100644 --- a/src/app/match-details/match-details.page.html +++ b/src/app/match-details/match-details.page.html @@ -4,8 +4,17 @@ -
{{ currentMatch.Teams[currentMatch.Matchdetail.Team_Home].Name_Short }} v/s {{ currentMatch.Teams[currentMatch.Matchdetail.Team_Away].Name_Short }}
- {{ currentMatch.Matchdetail.Venue.Name }}
+
+ + {{ currentMatch.Teams[currentMatch.Matchdetail.Team_Home].Name_Short }} v/s {{ currentMatch.Teams[currentMatch.Matchdetail.Team_Away].Name_Short }}
+
+ + + {{ currentMatch.Teams[inning.Battingteam].Name_Short }} {{ inning.Total }}/{{ inning.Wickets }} ({{ inning.Overs }})
+
+
+ {{ currentMatch.Matchdetail.Venue.Name }} +
@@ -149,11 +158,11 @@
-
+
    diff --git a/src/app/match-details/match-details.page.scss b/src/app/match-details/match-details.page.scss index a02812c..1155da3 100644 --- a/src/app/match-details/match-details.page.scss +++ b/src/app/match-details/match-details.page.scss @@ -1,6 +1,11 @@ @import '../colors'; +ion-content { + // background: linear-gradient(to bottom, white 50%, darken($brand-blue, 20%) 100%); + --background: white; +} + .commentary-container { padding-bottom: 60px; width: 100%; @@ -14,11 +19,11 @@ } .score-card { - box-shadow: 0px 0px 15px -6px darken($brand-blue, 10%); + box-shadow: 0px 0px 15px 5px #cecece; margin: 0px auto 30px; position: sticky; position: -webkit-sticky; - top: 140px; + top: 100px; z-index: 1; } diff --git a/src/global.scss b/src/global.scss index 8abd3cf..02d190d 100644 --- a/src/global.scss +++ b/src/global.scss @@ -37,8 +37,8 @@ } ion-content { - --background: #f4f4f4; - // background: linear-gradient(to bottom, darken($brand-blue, 20%), $brand-blue 80%); + --background: transparent; + background: linear-gradient(to bottom, white, darken($brand-blue, 20%) 100%); } .common-heading-holder {