aboutsummaryrefslogtreecommitdiff
path: root/src/module.js
blob: e967a6297b4799dd7b654568b727de0dcf484ff2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const initialize = () => {
  let p = document.createElement("p");
  p.textContent = "Hello Vim Vixen";
  p.style.position = 'fixed';
  p.style.right = '0';
  p.style.bottom = '0';
  p.style.padding = '0rem .5rem';
  p.style.margin = '0';
  p.style.backgroundColor = 'lightgray';
  p.style.border = 'gray';
  p.style.boxShadow = '0 0 2px gray inset';
  p.style.borderRadius = '3px';
  p.style.fontFamily = 'monospace';

  document.body.append(p)
}

export { initialize };