From bb1f8ec4678f6914ca6edb532aef278fc701117f Mon Sep 17 00:00:00 2001 From: dugo3number2 Date: Wed, 8 Feb 2023 13:29:21 -0600 Subject: [PATCH] Fix menu button on scroll --- docs/assets/js/scroll.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/assets/js/scroll.js b/docs/assets/js/scroll.js index dcc4957..1135f1b 100644 --- a/docs/assets/js/scroll.js +++ b/docs/assets/js/scroll.js @@ -14,6 +14,7 @@ function headerScroll() { for (const button of headerButtons) { button.children[0].className = "navscroll" } + menuButton.style.width = "20px" } else { header.style.padding = "10px" headerText.style.fontSize = "32px" @@ -21,5 +22,6 @@ function headerScroll() { for (const button of headerButtons) { button.children[0].className = "" } + menuButton.style.width = "25px" } } \ No newline at end of file