diff options
author | Akash Keshav <112591754+domesticchores@users.noreply.github.com> | 2025-04-04 20:49:15 -0400 |
---|---|---|
committer | Akash Keshav <112591754+domesticchores@users.noreply.github.com> | 2025-04-04 20:49:15 -0400 |
commit | ac6fa949a754778f268fb91f0b32464c153191ef (patch) | |
tree | fc37f83d5e8f74ca91676c436371469f60e5689c /ufund-ui/src/app/components/need-list/need-list.component.html | |
parent | b4a9cd9d540d42a61bee9045d41ada392305a8d5 (diff) | |
download | JellySolutions-ac6fa949a754778f268fb91f0b32464c153191ef.tar.gz JellySolutions-ac6fa949a754778f268fb91f0b32464c153191ef.tar.bz2 JellySolutions-ac6fa949a754778f268fb91f0b32464c153191ef.zip |
refactor login-page and need-list to support light/dark mode
Diffstat (limited to 'ufund-ui/src/app/components/need-list/need-list.component.html')
-rw-r--r-- | ufund-ui/src/app/components/need-list/need-list.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
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 84f80dc..18da39c 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 @@ -7,7 +7,7 @@ </div> <div id="sortArea"> <label for="sort">Sort by: </label> - <select id='sort' [(ngModel)] = "sortSelection" class="wide-input" (change)="search(searchForm.value)" [value]="sortSelection"> + <select [(ngModel)] = "sortSelection" class="wide-input sort-scheme" (change)="search(searchForm.value)" [value]="sortSelection"> <option *ngFor="let algorithm of SortingAlgoArrays" value="{{algorithm.name}}"> {{algorithm.display[sortMode === 'Ascending' ? 0 : 1]}} </option> @@ -16,7 +16,7 @@ <span class="icon">{{sortMode === 'Ascending' ? 'arrow_upward': 'arrow_downward'}}</span> </button> <label>Needs per page: </label> - <input type ="number" [(ngModel)]="itemsPerPage" (change)="editNeedsPerPage()" min="1" max="{{searchResults.length}}"> + <input class="sort-scheme" type ="number" [(ngModel)]="itemsPerPage" (change)="editNeedsPerPage()" min="1" max="{{searchResults.length}}"> </div> <!--<button (click)="close()">Close</button>--> </div> |