Surge_by_SukkaW/Assets/ampproject-org_v0.js

14 lines
304 B
JavaScript

(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);
})();