3
0
Idrees Jawad f1348f34c7
All checks were successful
continuous-integration/drone/push Build is passing
fixed logo and styling
2023-12-27 20:17:08 +05:30

18 lines
428 B
JavaScript

const privacyPolicy = document.getElementById('privacy-policy');
const headerWrapper = document.getElementById('kc-header-wrapper');
const header = document.getElementById('kc-header');
if (privacyPolicy) {
privacyPolicy.innerHTML = ''
}
if (headerWrapper) {
headerWrapper.innerHTML = '<h2></h2><p></p>'
}
if (header) {
const logo = document.createElement('div');
logo.id = 'main-logo';
header.appendChild(logo);
}