Skip to content

Commit 51ab8ea

Browse files
committed
after 2nd gig with updated gradients
1 parent 98272f4 commit 51ab8ea

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/shared/containers/Gigs/RecruitCRMJobs.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,9 @@ class RecruitCRMJobsContainer extends React.Component {
252252
<div styleName="jobs-list-container">
253253
{
254254
jobsToDisplay.length
255-
? jobsToDisplay.map((job) => {
255+
? jobsToDisplay.map((job, indx) => {
256256
const featured = getCustomField(job.custom_fields, 'Featured');
257-
if (featured === 'n/a' && !isHotlistRendered && hotlistJobs.length && decision.enabled) {
257+
if ((featured === 'n/a' || indx === 2) && !isHotlistRendered && hotlistJobs.length && decision.enabled) {
258258
isHotlistRendered = true;
259259
return (
260260
<React.Fragment>

src/shared/containers/Gigs/jobLisingStyles.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
.hotlist {
6969
display: flex;
7070
flex: 1;
71-
margin: 15px 0;
71+
margin: 5px 0;
7272

7373
h5 {
7474
font-family: Barlow, sans-serif;
@@ -155,11 +155,11 @@
155155
}
156156

157157
.hotlist-item-2 {
158-
background-image: linear-gradient(140.77deg, #9d41c9 0%, #50ade8 100%);
158+
background-image: linear-gradient(125.57deg, #2c95d7 0%, #83c5ee 100%);
159159
}
160160

161161
.hotlist-item-3 {
162-
background-image: linear-gradient(133.83deg, #f4f4f4 0%, #d4d4d4 100%);
162+
background-image: linear-gradient(309.43deg, #f4f4f4 0%, #d4d4d4 100%);
163163
}
164164

165165
.hotlist-item-4 {

0 commit comments

Comments
 (0)