git ssb

2+

dinoworm ๐Ÿ› / ssb-graphviz



Tree: 4c04551a3e25f880780438f3d6ba6a54f100d610

Files: 4c04551a3e25f880780438f3d6ba6a54f100d610 / output.js

487 bytesRaw
1const insertCss = require('insert-css')
2const Sbot = require('ssb-client')
3const waterfall = require('run-waterfall')
4
5const Viz = require('./')
6
7insertCss(`
8 html, body {
9 width: 100%;
10 height: 100%;
11 position: absolute;
12 overflow: hidden;
13 padding: 0;
14 margin: 0;
15 }
16
17 .avatar {
18 position: fixed;
19 left: 10px;
20 bottom: 10px;
21 color: #fff;
22 }
23
24 .avatar .image {
25 max-height: 160px;
26 }
27`)
28
29waterfall([Sbot, Viz], (err) => {
30 if (err) throw err
31})
32

Built with git-ssb-web