Do a lot of work :)

This commit is contained in:
timmypidashev
2021-09-21 18:24:13 -07:00
parent 7672c75f29
commit aca7c706ac
7 changed files with 278 additions and 9 deletions

3
static/js/closeNav.js Normal file
View File

@@ -0,0 +1,3 @@
function closeNav() {
document.getElementById("myNav").style.width = "0%";
}

3
static/js/openNav.js Normal file
View File

@@ -0,0 +1,3 @@
function openNav() {
document.getElementById("myNav").style.width = "100%";
}