diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-04-01 02:16:04 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-04-01 02:16:04 -0400 |
commit | 0e9c0803e35a23ef2e873dc7ebf224a49a92f207 (patch) | |
tree | 98583e1b1d21d1a0cc57e8ff3489fbbf758eccff /ufund-ui/src/app/components/need-list | |
parent | 61daadccf89b2b84820386558ac454c0123d4299 (diff) | |
download | JellySolutions-0e9c0803e35a23ef2e873dc7ebf224a49a92f207.tar.gz JellySolutions-0e9c0803e35a23ef2e873dc7ebf224a49a92f207.tar.bz2 JellySolutions-0e9c0803e35a23ef2e873dc7ebf224a49a92f207.zip |
Get everything working enough to go in main
Diffstat (limited to 'ufund-ui/src/app/components/need-list')
-rw-r--r-- | ufund-ui/src/app/components/need-list/need-list.component.css | 2 | ||||
-rw-r--r-- | ufund-ui/src/app/components/need-list/need-list.component.html | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/ufund-ui/src/app/components/need-list/need-list.component.css b/ufund-ui/src/app/components/need-list/need-list.component.css index 041b4ce..5f2e5e1 100644 --- a/ufund-ui/src/app/components/need-list/need-list.component.css +++ b/ufund-ui/src/app/components/need-list/need-list.component.css @@ -14,7 +14,7 @@ #needList { display: flex; flex-direction: column; - gap: 10px + gap: 15px } select { diff --git a/ufund-ui/src/app/components/need-list/need-list.component.html b/ufund-ui/src/app/components/need-list/need-list.component.html index 8ea88b1..c0501ba 100644 --- a/ufund-ui/src/app/components/need-list/need-list.component.html +++ b/ufund-ui/src/app/components/need-list/need-list.component.html @@ -25,7 +25,6 @@ <h2 *ngIf="searchResults.length < needs.length && searchResults.length != 0"> Search Results({{needs.length - searchResults.length}} needs filtered): </h2> <h2 *ngIf="searchResults.length == needs.length"> All Needs </h2> <h2 *ngIf="searchResults.length == 0"> No Results Found </h2> - <div id="needList"> <div *ngFor="let need of visibleNeeds" class="needEntry"> <div [routerLink]="'/need/' + need.id" class="clickable"> |