ampproject-org_v0.js 305 B

1234567891011121314
  1. (function () {
  2. 'use strict';
  3. const head = document.head;
  4. if (!head) { return; }
  5. const style = document.createElement('style');
  6. style.textContent = [
  7. 'body {',
  8. ' animation: none !important;',
  9. ' overflow: unset !important;',
  10. '}'
  11. ].join('\n');
  12. head.appendChild(style);
  13. })();