Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
bdsl committed Jan 17, 2025
1 parent 7092a70 commit 1f288d2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions src/app/campaign-card/campaign-card.component.scss
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
@use '@angular/material' as mat;
@import '../../abstract';

// doesn't seem to make any difference:
//biggive-campaign-card {
// height: 100%;
//}
2 changes: 1 addition & 1 deletion src/app/campaign.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface Campaign {
budgetDetails: Array<{amount: number, description: string}>;
categories: string[];
championName: string;
isRegularGiving: boolean | undefined;
isRegularGiving: boolean;
charity: {
id: string;
name: string;
Expand Down
2 changes: 1 addition & 1 deletion src/app/explore/explore.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
[scrollWindow]="true"
>
@for (campaign of individualCampaigns; track campaign.id) {
<div>
<div style="height: 100%;">
<app-campaign-card
[campaign]="campaign"
[useSharedFunds]="!! this.metaCampaign?.usesSharedFunds"
Expand Down

0 comments on commit 1f288d2

Please sign in to comment.