Skip to content

Commit

Permalink
Merge pull request #107 from swoocn/fix-bugs
Browse files Browse the repository at this point in the history
Self approved.
  • Loading branch information
swoocn authored Mar 15, 2024
2 parents c771bb5 + 1f4b880 commit 9be91de
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/app/home/map/map.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class MapComponent implements OnInit {
this.filteredShops = this.allShops.filter(shop =>
shop.name.toLowerCase().includes(query.toLowerCase())
);
console.log("Filtered shops:", this.filteredShops);
// console.log("Filtered shops:", this.filteredShops);
// Update the map markers to reflect the filtered shops
this.removeAllMarkersFromMap();
this.addAllCoordinatesToMap(this.filteredShops);
Expand Down
6 changes: 6 additions & 0 deletions frontend/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,19 @@ body {
background-repeat: no-repeat;
background-attachment: fixed;
}
.mat-app-background {
background-color: rgba(221, 221, 221, 0.062);
}

/* TODO; Refactor and attempt to use Angular Material consistently */
@include mat.all-component-themes($app-light-theme);
// dark mode toggle
.dark-mode {
@include mat.all-component-colors($app-dark-theme);

.mat-app-background {
background-color: rgba(0, 0, 0, 0.822);
}
// account for non-mat elements.
.business-registration__input,
.business-registration__select {
Expand Down

0 comments on commit 9be91de

Please sign in to comment.