feat: Add link to GitHub

This commit is contained in:
sigmasternchen 2024-09-28 21:02:01 +02:00
parent 62833f3f1b
commit 304e217d80
3 changed files with 15 additions and 1 deletions

View file

@ -8,6 +8,9 @@
</head>
<body>
<div id="app"></div>
<a class="github-link" href="https://github.com/sigmasternchen/x86-64-wordle">
<img src="static/github-mark-white.png" alt="Github logo" />
</a>
<script src="static/bundle.js"></script>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View file

@ -199,4 +199,15 @@ h2 {
.result.show {
pointer-events: initial;
opacity: 1;
}
}
.github-link {
display: block;
position: fixed;
bottom: 10px;
right: 10px;
}
.github-link img {
width: 40px;
}