Add author credit

This commit is contained in:
Ray 2024-09-09 04:25:22 +00:00 committed by GitHub
parent 008e0d8641
commit 6f82d797a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 22 additions and 0 deletions

View file

@ -9,5 +9,8 @@
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<div class="footer-copyright">
© 2024 <a href="https://reiyua.lol" target="_blank" rel="noopener noreferrer">reiyua</a>
</div>
</body>
</html>

View file

@ -76,4 +76,23 @@
font-size: 2em; /* Larger labels */
margin-top: 20px;
}
/* Footer copyright */
.footer-copyright {
position: absolute;
bottom: 20px; /* Position it a bit above the edge */
width: 100%;
text-align: center;
font-size: 1em;
color: #ffffff;
}
.footer-copyright a {
color: #ffffff;
text-decoration: none;
}
.footer-copyright a:hover {
text-decoration: underline;
}