mirror of
https://github.com/jaywcjlove/wxmp.git
synced 2026-01-11 07:48:48 +08:00
11 lines
266 B
TypeScript
11 lines
266 B
TypeScript
const styleStr = `.header .logo {}`;
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const head = document.querySelector('head');
|
|
const style = document.createElement('style');
|
|
style.textContent = styleStr;
|
|
if (head) {
|
|
head.append(style);
|
|
}
|
|
});
|