Adjust width of popup in job posting

I am trying to make the width of the popup wider on the job posting widget. What is the CSS for that widget?

Assuming it is something like below
@media(min-width:768px) {

.global-styles,
.eapp-job-board-popup-popupcontainer {
flex-basis: 70%;
}

.global-styles,
.eapp-job-board-popup-item-inner {
max-width: none;
}
}

1 Like

Hi there, @Info_at_BEST :waving_hand:

This CSS code will do the trick:

[class*="Popup__PopupContent-sc"] {
  width: 900px !important;
}

Give it a try and let me know if you like the result :slightly_smiling_face:

2 Likes