deploy: 9abfee98e0cf6c0e2255503a15b1a4c1b6774c91

This commit is contained in:
SukkaBot
2022-12-08 16:15:37 +00:00
parent 722e4af028
commit 2e4123dcdc
9 changed files with 217 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
(function () {
'use strict';
const head = document.head;
if (!head) { return; }
const style = document.createElement('style');
style.textContent = [
'body {',
' animation: none !important;',
' overflow: unset !important;',
'}'
].join('\n');
head.appendChild(style);
})();