summaryrefslogtreecommitdiff
path: root/templates/static/main.mjs
diff options
context:
space:
mode:
authorAbdellah El Morabit <nsrddyn@gmail.com>2024-11-29 13:24:16 +0100
committerAbdellah El Morabit <nsrddyn@gmail.com>2024-11-29 13:24:16 +0100
commitfdd3b103bb209045123693cd60149b951c7b2be8 (patch)
tree1019543e2db0ec535f9a76c9f8527fa0ef299caa /templates/static/main.mjs
parent446f3d4742f88b09c85e83e96f6505cd3f6302c5 (diff)
rewritten the source of the application
Diffstat (limited to 'templates/static/main.mjs')
-rw-r--r--templates/static/main.mjs13
1 files changed, 0 insertions, 13 deletions
diff --git a/templates/static/main.mjs b/templates/static/main.mjs
deleted file mode 100644
index 7e48f65..0000000
--- a/templates/static/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)";
- });
- });
-});