body overflow hidden

This commit is contained in:
priyanshuvish
2025-09-30 18:49:38 +05:30
parent 1ee2f06db9
commit 241b5a2770
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
<title>Admin Control Panel</title>
</head>
<body>
<body style="overflow: hidden;">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>

View File

@@ -1,6 +1,6 @@
import { createRoot } from "react-dom/client";
import App from "./App.tsx";
import App from "./App";
import "./index.css";
createRoot(document.getElementById("root")!).render(<App />);