Skip to content

Commit

Permalink
Wfnews 2415 (#2122)
Browse files Browse the repository at this point in the history
* text and icon change for saved page on mobile

* fix styling issue for 2415
  • Loading branch information
yzlucas authored Nov 4, 2024
1 parent e81ca72 commit ab824bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</span>
</div>
<div class="section-card" *ngIf="!savedLocations.length" (click)="addNewLocation()">
<div class="add-location-content">
<div class="add-location-content flex-enabled">
<img alt="icon" class="location-icon" src="/assets/images/svg-icons/carbon_location.svg">
<span>Add a saved location to receive notifications</span>
</div>
Expand Down Expand Up @@ -112,7 +112,7 @@
<span class="section-header">Saved Wildfires</span>
</div>
<div class="section-card-wildfires" *ngIf="!wildFireWatchlist.length">
<div class="saved-wildfires-content">
<div class="saved-wildfires-content flex-enabled">
<img alt="icon" class="location-icon" src="/assets/images/svg-icons/saved-blue-border.svg">
<span>Save a wildfire on the map to easily find here later</span>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@

.add-location-content {
padding: 72px 26px;
display: flex;

span {
padding-left: 9px;
Expand All @@ -82,6 +81,10 @@
}
}

.flex-enabled {
display: flex
}

.saved-location-content {
@extend .add-location-content;
width: 100%;
Expand All @@ -90,7 +93,6 @@

.saved-wildfires-content {
padding: 72px 26px;
display: flex;

span {
padding-left: 9px;
Expand Down

0 comments on commit ab824bf

Please sign in to comment.