Skip to content

Commit

Permalink
Maop search list padding
Browse files Browse the repository at this point in the history
  • Loading branch information
paulnagle committed Jan 13, 2024
1 parent e3d7f0d commit d6a63a8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/app/pages/map-search/map-search.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@
{{'MAP_SEARCH' | translate}}
</ion-title>
</ion-toolbar>
<ion-searchbar color="tertiary" placeholder="Tertiary" no-padding [debounce]="250" (ionInput)="updateSearchResults($event)" placeholder="search">
</ion-searchbar>
</ion-header>

<ion-content>

<ion-list no-padding [hidden]="autocompleteItems.length == 0">
<ion-searchbar no-padding color="primary" placeholder="Tertiary" no-padding [debounce]="250" (ionInput)="updateSearchResults($event)" placeholder="search">
</ion-searchbar>
<ion-list class="ion-no-padding" [hidden]="autocompleteItems.length == 0">
<ion-item *ngFor="let item of autocompleteItems" tappable (click)="selectSearchResult(item)">
{{ item.description }}
</ion-item>
Expand Down
4 changes: 4 additions & 0 deletions src/app/pages/map-search/map-search.page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ ion-content {
body {
background: transparent;
}

ion-searchbar {
background-color: #0a61ad;
}

0 comments on commit d6a63a8

Please sign in to comment.