diff options
author | benal01 <bja4245@rit.edu> | 2025-03-21 10:13:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-21 10:13:27 -0400 |
commit | a401cfe17108fcd38cd2ccf15e2d3f0e49606d9e (patch) | |
tree | f735df43a8e2cbae1fc5ec2842b19ddb6a94910c /ufund-ui/src/app/components/need-list/need-list.component.css | |
parent | 35d7c971ed47718d4dc5738edb09d62cd780dac4 (diff) | |
parent | d386b35bf24444240b0d670674c3e75ea5d8b3ce (diff) | |
download | JellySolutions-a401cfe17108fcd38cd2ccf15e2d3f0e49606d9e.tar.gz JellySolutions-a401cfe17108fcd38cd2ccf15e2d3f0e49606d9e.tar.bz2 JellySolutions-a401cfe17108fcd38cd2ccf15e2d3f0e49606d9e.zip |
Merge pull request #16 from RIT-SWEN-261-02/need-component-refactor
Need component refactor
Diffstat (limited to 'ufund-ui/src/app/components/need-list/need-list.component.css')
-rw-r--r-- | ufund-ui/src/app/components/need-list/need-list.component.css | 14 |
1 files changed, 11 insertions, 3 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 bbc3f2c..f8948ee 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 @@ -2,9 +2,7 @@ list-style-type:circle; border: 2px solid #000; display: block; - width: 30%; border-radius: 5px; - } li, div { @@ -12,10 +10,20 @@ li, div { border-radius: 5px; padding: 5px; margin: 5px; +} + +li { + display: flex; + justify-content: space-between; + align-items: center; +} +.icon { + width: 15px; + margin: 3px -3px -1px -3px; } -#search-form { +#search-container { background-color: #d9d9d9; padding: 10px 20px 20px 20px; border: 2px solid #000; |