
function addStyleToHeader(css) {
const style = document.createElement(‘style’);
style.innerHTML = css;
document.head.appendChild(style);
}
const headerStyle = `
.content-block >div:first-child {
margin:-1px!important;
}
`;
addStyleToHeader(headerStyle);