Modified footer content

This commit is contained in:
Helen Chong 2023-06-27 07:04:20 +08:00
parent 968e6a4d72
commit 74878a03aa
2 changed files with 7 additions and 1 deletions

View File

@ -6,7 +6,9 @@ class Footer extends HTMLElement {
connectedCallback() { connectedCallback() {
this.innerHTML = ` this.innerHTML = `
<footer> <footer>
Site Launched: September 11, 2022 by Leilukin | <a href="/changelog">Website Changelog</a> | <a href="#page-top">Back to top</a> <p>Made with by Leilukin</p>
<p>Site Launched: September 11, 2022</p>
<p><a href="/changelog">Website Changelog</a> | <a href="#page-top">Back to top</a></p>
</footer> </footer>
`; `;
} }

View File

@ -574,4 +574,8 @@ footer {
width: 100vw; width: 100vw;
padding: 0.5rem; padding: 0.5rem;
text-align: center; text-align: center;
}
footer p {
padding: 0;
} }