Greasy Fork is available in English.

Bullhorn Overflow Fix

Fix for non-scrollable Pins

// ==UserScript==
// @name        Bullhorn Overflow Fix
// @namespace   https://github.com/soaringsky
// @match       https://app.bullhornstaffing.com/*
// @version     1.0
// @author      Sky, Dot
// @description Fix for non-scrollable Pins
// @license GPLv3
// ==/UserScript==
var styles = `
 #novo-body.disable-scrolling.zoom-out {
    overflow-y: scroll;
}
`

var styleSheet = document.createElement('style');
styleSheet.innerText = styles;
document.head.appendChild(styleSheet);