diff options
Diffstat (limited to '')
| -rw-r--r-- | ufund-ui/src/app/components/need-list/need-list.component.css | 7 | ||||
| -rw-r--r-- | ufund-ui/src/app/components/need-list/need-list.component.html | 5 | 
2 files changed, 7 insertions, 5 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 5e07856..05354fc 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 @@ -75,14 +75,17 @@ li > button:hover p {  #search-container {      background-color: #d9d9d9; +} +  #search-form {      background-color: light-dark(#d9d9d9, #1b1b1b);      padding: 10px 20px 20px 20px;      border: 2px solid #000;      border-radius: 5px; +    border-radius: 5px; +    visibility: visible; +      .wide-input {          width: 60%;      } -    border-radius: 5px; -    visibility: visible;   } 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 866e5e4..72bc9c5 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 @@ -1,4 +1,3 @@ -<h1>Needs List</h1>  <div id="search-container">      <section>          <label for="sort">Sort by: </label> @@ -43,9 +42,9 @@              <button (click)="select(need)" id="need-edit-button-{{need.id}}">                  <img class="icon" src="/edit.png" alt="Select">              </button> -            <button (click)="delete(need.id)" *ngIf="isManager()">  +            <button (click)="delete(need.id)" *ngIf="isManager()">                  <img class="icon" src="/delete.png" alt="Delete">              </button>          </section>      </li> -</ul>
\ No newline at end of file +</ul>  | 
