Skip to content

Commit

Permalink
Update place ids flow
Browse files Browse the repository at this point in the history
  • Loading branch information
jmccollum-woolpert committed Feb 2, 2024
1 parent 57c8238 commit 4f08401
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,20 @@ <h4 class="strong d-flex mb-2">
<!-- resolve place ids -->
<div
*ngIf="scenarioHasPlaceIds && placeIdProgress < placeIdCount"
class="d-flex flex-column mat-small">
class="d-flex flex-column mat-small mt-3">
<div *ngIf="!resolvingPlaceIds" class="d-flex flex-column align-items-center">
<p>
⚠️ This scenario contains Place ID waypoints. Some features of the application require
lat/lng locations. Click the button below to request the lat/lng location of all Place
IDs in the scenario (it will take a few minutes). You may continue with just the Place
IDs, but some parts of the application may not work properly.
</p>
<button type="button" mat-stroked-button (click)="resolveWaypointPlaceIds()">
<button
type="button"
mat-stroked-button
color="primary"
class="white-button"
(click)="resolveWaypointPlaceIds()">
Get Place ID Locations
</button>
</div>
Expand Down Expand Up @@ -129,7 +134,7 @@ <h4 class="strong d-flex mt-4 mb-2">
type="button"
mat-stroked-button
color="primary"
class="csv-button"
class="white-button"
(click)="loadFromCsv()">
Continue
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
color: $gray;
}

.csv-button {
.white-button {
border: 1px solid #4285f480;
background: #fff;
}

0 comments on commit 4f08401

Please sign in to comment.