Skip to content

Commit

Permalink
fix: cards responsive issue on mobile view
Browse files Browse the repository at this point in the history
Signed-off-by: upsaurav12 . <[email protected]>
  • Loading branch information
upsaurav12 committed Nov 18, 2024
1 parent 9dcf750 commit db7adb4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/reusecore/Layout/Row.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const RowWrapper = styled.div`
display: flex;
margin-left: -15px;
margin-right: -15px;
flex-wrap: wrap;
@media (max-width: 1440px) {
flex-wrap: wrap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,12 @@ p{
}
}
@media only screen and (max-width: 489px) {
.opportunity-card {
width: 100% !important;
}
}
@media screen and (max-width: 700px) {
.opportunity-card {
width: 23rem;
Expand Down

0 comments on commit db7adb4

Please sign in to comment.