diff --git a/src/App.jsx b/src/App.jsx
index c31b881..a782ef9 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -8,6 +8,7 @@ import { handleUpdates, handleDrawing } from "./utils/canvas";
import { FaBookOpen } from "react-icons/fa";
import { VscClose } from "react-icons/vsc";
import { PiPencilSimpleFill } from "react-icons/pi";
+import { BiArea } from "react-icons/bi";
import { FaFeatherPointed } from "react-icons/fa6";
import { RiScreenshot2Fill } from "react-icons/ri";
import { FaFilePdf } from "react-icons/fa";
@@ -174,8 +175,14 @@ function App() {
{/* ----- Canvas ------ */}
+
+ id="draw"
+ className={`whiteboard bg-slate-950 mt-[4vh] rounded-[0.6rem] shadow-md shadow-black dark:shadow-black dark:shadow-lg ${
+ isDrawing ? "cursor-pointer" : "cursor-default pointer-events-none" }
+ `}
+ ref={canvasRef}
+ >
+
{showMenuAndBgColor &&