2025-11-23 20:12:01 +07:00
|
|
|
<!-- Mobile Header -->
|
|
|
|
|
<div class="md:hidden flex items-center justify-between bg-white text-gray-800 p-4 shadow-md relative z-50">
|
2025-11-23 20:45:16 +07:00
|
|
|
<button (click)="sidebar.toggleSidebar()" class="p-2">
|
2025-11-23 20:12:01 +07:00
|
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-4 6h10"></path>
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
<div></div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex h-screen bg-gray-50">
|
|
|
|
|
<!-- Sidebar -->
|
|
|
|
|
<app-sidebar #sidebar></app-sidebar>
|
2025-11-11 10:52:30 +07:00
|
|
|
|
|
|
|
|
<!-- Content -->
|
2025-11-23 20:12:01 +07:00
|
|
|
<div class="flex-1 overflow-y-auto overflow-x-hidden text-gray-900">
|
2025-11-11 10:52:30 +07:00
|
|
|
<router-outlet></router-outlet>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|