Skip to content

Commit

Permalink
Merge pull request #6057 from vrushabhgawas14/text-overflow
Browse files Browse the repository at this point in the history
Fix overflow by making row to flex-wrap
  • Loading branch information
leecalcote authored Dec 9, 2024
2 parents fb3052b + d06507f commit b3f304f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/sections/Careers/Career-single/CareerSingle.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ const CareerPageWrapper = styled.div`
}
}
.job-details-row {
flex-wrap: wrap;
}
.layer5-logo {
width: 15rem;
margin: auto;
Expand Down
2 changes: 1 addition & 1 deletion src/sections/Careers/Career-single/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const CareerSingle = ({ data }) => {
<Container>
<Row className="job-header-row">
<Col $xs={12} $md={7} $xl={8} className="job-details">
<Row>
<Row className="job-details-row">
<Col $xs={6} className="job-details-col">
<h5> <FaPlay /> Start Date</h5>
<p>{frontmatter.start_date}</p>
Expand Down

0 comments on commit b3f304f

Please sign in to comment.