custom.js 524 Bytes
Newer Older
LysandreJik's avatar
LysandreJik committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function addIcon() {
    const huggingFaceLogo = "http://lysand.re/huggingface_logo.svg";
    const image = document.createElement("img");
    image.setAttribute("src", huggingFaceLogo)


    const div = document.createElement("div")
    div.appendChild(image);
    div.style.textAlign = 'center';
    div.style.paddingTop = '30px';
    div.style.backgroundColor = '#6670FF'

    const scrollDiv = document.getElementsByClassName("wy-side-scroll")[0];
    scrollDiv.prepend(div)
}

window.addEventListener("load", addIcon)