Settings, removed leaf and tiktok proxy

This commit is contained in:
Pablo Ferreiro 2022-01-02 17:39:22 +01:00
parent de4e726e1f
commit 042e36fffc
No known key found for this signature in database
GPG key ID: 41FBCE65B779FA24
15 changed files with 370 additions and 663 deletions

6
scripts/navbar.js Normal file
View file

@ -0,0 +1,6 @@
const navbar_menu = document.getElementById('navbar-menu')
const burger = document.getElementById('navbar-burger')
burger.addEventListener('click', () => {
burger.classList.toggle('is-active')
navbar_menu.classList.toggle('is-active')
})