Skip to content

Commit

Permalink
css tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
paulnagle committed Jan 28, 2024
1 parent 47b4dbb commit 92350a3
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div *ngIf="isExpandAll() === false">
<ion-list class="no-padding">
<ion-list>
<ion-item>
<ion-text>
<p class="ion-1x">&nbsp; {{ selectedDay | translate }} : {{ displayLower }} - {{ displayUpper }} </p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ export class DoIHaveTheBmltPage {

dismissLoader() {
if (this.loader) {
console.log('Dismissing loader..');
this.loader = this.loaderCtrl.dismiss();
this.loader = null;
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/listfull/listfull.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
<ion-footer>
<ion-toolbar>
<div *ngIf="areaName != ''">
<ion-title>{{ areaName }}</ion-title>
<ion-title class="text-wrap">{{ areaName }}</ion-title>
</div>
</ion-toolbar>
</ion-footer>
2 changes: 1 addition & 1 deletion src/app/pages/location-search/location-search.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<b>{{radius}} {{'MEETINGS_NEAREST' | translate}} {{ currentAddress }}</b>

<ion-button slot="end" expand="block" color="primary" id="LocationButton" (click)="locatePhone()" >
<ion-icon slot="end" name="locate-outline"></ion-icon>&nbsp;{{'LOCATIONSEARCH' | translate }}
<ion-icon slot="end" name="locate-outline"></ion-icon>{{'SEARCH' | translate }}
</ion-button>
</ion-item>

Expand Down
1 change: 0 additions & 1 deletion src/app/pages/location-search/location-search.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ export class LocationSearchPage {
}

getAllMeetingsAfterLocate() {
console.log("Calling getAllMeetingsAfterLocate")
this.MeetingListService.getAddressMeetings(this.addressLatitude, this.addressLongitude, this.radius).then((response) => {
this.addressMeetingList = response.data;
this.isLoaded = true;
Expand Down
2 changes: 1 addition & 1 deletion src/assets/translations/en.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"MENU" : "Menu",
"HOME" : "Home",
"LOCATIONSEARCH" : "Update Current Location",
"LOCATIONSEARCH" : "Current Location Search",
"LOADINGMAP" : "Loading map...",
"LOCATION" : "",
"NO_LOCATION" : "Location not set",
Expand Down
25 changes: 25 additions & 0 deletions src/theme/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,31 @@

--ion-font-family: 'Plex';

ion-list {
padding: 0px;
}

ion-range {
padding: 0px;
}

ion-range::part(pin) {
display: inline-flex;
align-items: center;
justify-content: center;

z-index: 100000000000;
position:relative;
border-radius: 50%;
transform: scale(1.01);

top: -1px;

min-width: 28px;
height: 28px;
transition: transform 120ms ease, background 120ms ease;
}

ion-card {
--background: #eeeeee;
--color: #ffffff;
Expand Down

0 comments on commit 92350a3

Please sign in to comment.