diff --git a/frontend/main.js b/frontend/main.js index eb164aa..0ac76d5 100644 --- a/frontend/main.js +++ b/frontend/main.js @@ -19,12 +19,12 @@ const editor = new Editor(); editor.mode_change_handler = () => { const icon = document.querySelector("#toggle-mode > i"); if (editor.mode == "edit") { - icon.classList.add("lni-pencil"); + icon.classList.add("lni-pencil-1"); icon.classList.remove("lni-eye"); } else { icon.classList.add("lni-eye"); - icon.classList.remove("lni-pencil"); + icon.classList.remove("lni-pencil-1"); } }; document.querySelector("#toggle-mode").addEventListener("click", () => { diff --git a/index.html b/index.html index 2df3d2a..735ae5b 100644 --- a/index.html +++ b/index.html @@ -8,7 +8,7 @@
- +
@@ -17,20 +17,20 @@ note.rs
- +
- +
 
- +
- +
@@ -49,16 +49,16 @@