diff --git a/src/reusecore/Layout/Row.js b/src/reusecore/Layout/Row.js index 4f5bc953fb1c..57c5b6769b1f 100644 --- a/src/reusecore/Layout/Row.js +++ b/src/reusecore/Layout/Row.js @@ -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; } diff --git a/src/sections/Careers/Careers-Internship-grid/InternshipPage.style.js b/src/sections/Careers/Careers-Internship-grid/InternshipPage.style.js index 26776273efbf..98081fde0fd0 100644 --- a/src/sections/Careers/Careers-Internship-grid/InternshipPage.style.js +++ b/src/sections/Careers/Careers-Internship-grid/InternshipPage.style.js @@ -115,7 +115,8 @@ p{ } .full_time { - .opportunity-card { + flex-wrap: wrap; + .opportunity-card { height: 12rem; } } @@ -123,6 +124,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; } }