major UI/UX improvements

Signed-off-by: ari melody <ari@arimelody.me>
This commit is contained in:
ari melody 2024-03-18 15:04:04 +00:00
parent 93539c8376
commit 6efd47c6c6
17 changed files with 739 additions and 458 deletions

View file

@ -1,5 +1,4 @@
const header_links = document.getElementById("header-links");
const hamburger = document.getElementById("header-links-toggle");
import "./header.js";
function type_out(e) {
const text = e.innerText;
@ -55,12 +54,3 @@ function fill_list(list) {
fill_list(e);
});
function toggle_header_links() {
header_links.classList.toggle("open");
}
document.addEventListener("click", event => {
if (!header_links.contains(event.target) && !hamburger.contains(event.target)) {
header_links.classList.remove("open");
}
});