fixed tickets page responsiveness and adjusted layout, paddings, margins, sizes etc.

This commit is contained in:
TFT
2025-04-29 18:36:38 +03:00
parent 959ca48643
commit 9a8a778d4d
3 changed files with 6099 additions and 19 deletions

View File

@@ -9,7 +9,7 @@ const SidebarParent = () => {
const toggleSidebar = () => setIsOpen(!isOpen);
return (
<div className="fixed w-screen">
<div className="fixed w-screen top-0 z-9999">
<Header toggleSidebar={toggleSidebar} />
<Sidebar isOpen={isOpen} toggleSidebar={toggleSidebar}/>
</div>