diff --git a/gui/scripts/windowman.JS b/gui/scripts/windowman.JS index 5ce6d6e..4a9c440 100644 --- a/gui/scripts/windowman.JS +++ b/gui/scripts/windowman.JS @@ -90,6 +90,11 @@ class windowman { button.classList.add(`waves-effect`); } }) + document.querySelectorAll(`a`).forEach((button) => { + if (!button.classList.contains(`waves-effect`)) { + button.classList.add(`waves-effect`); + } + }) }