diff options
author | benal01 <bja4245@rit.edu> | 2025-04-05 20:18:25 -0400 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-04-05 20:18:25 -0400 |
commit | 8ee9c972b06829ccae3adccf3009279f6aeaeb4c (patch) | |
tree | 1b97171260554502d6d298ff78cfe09c15afe643 /ufund-ui/src/app/components/need-list/need-list.component.css | |
parent | 0103ffc6f84d04433943c644ab759c1d04b5e681 (diff) | |
download | JellySolutions-8ee9c972b06829ccae3adccf3009279f6aeaeb4c.tar.gz JellySolutions-8ee9c972b06829ccae3adccf3009279f6aeaeb4c.tar.bz2 JellySolutions-8ee9c972b06829ccae3adccf3009279f6aeaeb4c.zip |
need image on need list
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 | 25 |
1 files changed, 22 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 622b64a..5cfa479 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 @@ -20,18 +20,34 @@ font-size: 10pt; } +.need-image { + height: 130px; + width: 200px; + margin: -10px 0 0 -10px; + object-fit: cover; + border-radius: 5px; + mask-image: linear-gradient(to right, rgb(255,255,255) 0, rgb(255,255,255,.1) 60%, rgb(255,255,255,0) 100%); +} + .split { display: flex; flex-direction: row; - justify-content: space-between; - - + .left { + width: 15%; + display: flex; + flex-direction: column; + } + + .middle { + width: 42.5%; display: flex; + align-items: start; flex-direction: column; } .right { + width: 42.5%; display: flex; flex-direction: column; align-items: end; @@ -47,8 +63,11 @@ } .prog { + width: 85%; display: flex; flex-direction: column; + align-self: end; + margin-top: -5.25%; } .clickable { |