diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 7b3d26f..a4152da 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -64,6 +64,7 @@ export class AppComponent implements OnInit { this.listTranslations.distance = await this.translateService.getData(this.listTranslations.distance, lang); this.listTranslations.locationName = await this.translateService.getData(this.listTranslations.locationName, lang); this.listTranslations.positionNotFoundErrorMessage = await this.translateService.getData(this.listTranslations.positionNotFoundErrorMessage, lang); + this.listTranslations.waypointVisitedPercentage = await this.translateService.getData(this.listTranslations.waypointVisitedPercentage, lang); // Load Management Page Translations this.managementTranslation.users = await this.translateService.getData(this.managementTranslation.users, lang); diff --git a/src/app/component/list/list.component.css b/src/app/component/list/list.component.css index a709ef5..636c4eb 100644 --- a/src/app/component/list/list.component.css +++ b/src/app/component/list/list.component.css @@ -45,8 +45,6 @@ h4 { } .right { width: 60%; - display: flex; - justify-content: center; } #radial { @@ -57,3 +55,26 @@ h4 { display: flex; flex-direction: row; } + +.radial-container{ + display: flex; + justify-content: center; +} + +#radialTitle{ + margin-top: 20px; + margin-bottom: 20px; + text-align: center; +} + +#location-name{ + display: flex; + flex-direction: row; +} + +#check{ + height: 100%; + align-self: center; + margin-left: 10px; + color: #519903; +} diff --git a/src/app/component/list/list.component.html b/src/app/component/list/list.component.html index 1c53ba3..6e7f75c 100644 --- a/src/app/component/list/list.component.html +++ b/src/app/component/list/list.component.html @@ -24,8 +24,11 @@