Skip to content

Commit

Permalink
fix: opportunty card responsiveness
Browse files Browse the repository at this point in the history
Signed-off-by: upsaurav12 . <[email protected]>
  • Loading branch information
upsaurav12 committed Nov 15, 2024
1 parent 86fe3aa commit eb644dc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/reusecore/Layout/Row.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ const RowWrapper = styled.div`
display: flex;
margin-left: -15px;
margin-right: -15px;
@media (max-width: 1440px) {
flex-wrap: wrap;
}
@media (max-width: 760px) {
flex-wrap: wrap;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,13 @@ p{
@media screen and (max-width: 991px) {
.opportunity-card {
height: 12.5rem;
width: 16rem;
}
}
@media screen and (max-width: 700px) {
.opportunity-card {
width: 23rem;
}
}
Expand Down

0 comments on commit eb644dc

Please sign in to comment.