PlanTempusApp/PlanTempus.Application/wwwroot/css/app-layout.css
Janus C. H. Knudsen 405dabeb34 Add reports page with sales analytics and UI components
Introduces comprehensive reports feature with interactive sales dashboard
Includes dynamic data tables, charts, and filtering capabilities
Enhances application with new statistics and reporting functionality
2026-01-21 21:37:09 +01:00

37 lines
1 KiB
CSS

/**
* App Layout - Main Grid Structure
*
* Definerer den overordnede app-struktur med sidebar og main content
*/
/* ===========================================
MAIN APP GRID
=========================================== */
swp-app-layout {
display: grid;
grid-template-columns: var(--side-menu-width) 1fr;
grid-template-rows: var(--topbar-height) 1fr;
height: 100vh;
transition: grid-template-columns var(--transition-normal);
}
/* ===========================================
COLLAPSED MENU STATE
=========================================== */
swp-app-layout.menu-collapsed {
grid-template-columns: var(--side-menu-width-collapsed) 1fr;
}
/* ===========================================
MAIN CONTENT AREA
=========================================== */
swp-main-content {
display: block;
overflow-y: auto;
background: var(--color-background);
}
/* ===========================================
DRAWER OVERLAY
Styles moved to drawers.css for consistency with calpoc
=========================================== */