var css = document.createElement('style'); css.type = 'text/css'; var styles = `body .login .login-container-wrapper .btn-block.paypalSmartButtons { padding: 0; margin: 0; height: auto; max-width: 240px; }`; if (css.styleSheet) css.styleSheet.cssText = styles; else css.appendChild(document.createTextNode(styles)); document.getElementsByTagName("head")[0].appendChild(css);