mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
28 lines
625 B
TypeScript
28 lines
625 B
TypeScript
|
|
import { insertCss } from 'insert-css';
|
||
|
|
|
||
|
|
insertCss('body{position:absolute}');
|
||
|
|
|
||
|
|
insertCss('body{position:absolute}', {});
|
||
|
|
|
||
|
|
insertCss('body{text-decoration:underline !important}', {
|
||
|
|
prepend: true,
|
||
|
|
});
|
||
|
|
|
||
|
|
insertCss('body{text-decoration:underline !important}', {
|
||
|
|
prepend: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
insertCss('body{position:absolute}', {
|
||
|
|
container: document.createElement(''),
|
||
|
|
});
|
||
|
|
|
||
|
|
insertCss('body{text-decoration:underline !important}', {
|
||
|
|
prepend: true,
|
||
|
|
container: document.createElement(''),
|
||
|
|
});
|
||
|
|
|
||
|
|
insertCss('body{text-decoration:underline !important}', {
|
||
|
|
prepend: false,
|
||
|
|
container: document.createElement(''),
|
||
|
|
});
|