hugo-theme-minima/assets/js/style.js
2021-11-06 15:28:56 +08:00

9 lines
No EOL
323 B
JavaScript

// fix style of checkboxes in posts.
document.querySelectorAll('.md ul').forEach(v => {
if (/<li><input .+>.+<\/li>/.test(v.innerHTML)) {
v.classList.add('ul-checkbox');
}
});
// use custom font family
document.querySelector('body').style.setProperty('--global-font-family', '{{ .Site.Params.globalFontFamily }}');