summaryrefslogtreecommitdiff
path: root/webGUI/main.mjs
diff options
context:
space:
mode:
authorAbdellah El Morabit <nsrddyn@gmail.com>2024-11-24 12:41:38 +0100
committerAbdellah El Morabit <nsrddyn@gmail.com>2024-11-24 12:41:38 +0100
commit3a6928a0189bfe8d481c7eeac7a3d3df5dd9cdc0 (patch)
tree86a00bcd10dae82ac566e68c2c525fa71a44607a /webGUI/main.mjs
parent567787eabe414592d005c727868091bcba2bf6fe (diff)
updates to the web gui
Diffstat (limited to 'webGUI/main.mjs')
-rw-r--r--webGUI/main.mjs13
1 files changed, 0 insertions, 13 deletions
diff --git a/webGUI/main.mjs b/webGUI/main.mjs
deleted file mode 100644
index 7e48f65..0000000
--- a/webGUI/main.mjs
+++ /dev/null
@@ -1,13 +0,0 @@
-document.addEventListener("DOMContentLoaded", () => {
- const buttons = document.querySelectorAll(".controls a");
-
- buttons.forEach((button) => {
- button.addEventListener("mouseover", () => {
- button.style.boxShadow = "0px 6px 12px rgba(255, 255, 255, 0.5)";
- });
-
- button.addEventListener("mouseout", () => {
- button.style.boxShadow = "0px 4px 8px rgba(0, 0, 0, 0.4)";
- });
- });
-});