Refactors header grid layout with CSS subgrid

Updates header and viewport components to use CSS subgrid for more flexible layout

Improves grid structure by:
- Replacing fixed grid columns with subgrid
- Adjusting scrollbar and overflow properties
- Simplifying header and track element positioning
This commit is contained in:
Janus C. H. Knudsen 2025-12-10 23:55:46 +01:00
parent 679580702b
commit e145bc7c70
2 changed files with 20 additions and 15 deletions

View file

@ -1,7 +1,7 @@
export class HeaderDrawerManager {
private drawer!: HTMLElement;
private expanded = false;
private readonly expandedHeight = 24;
private readonly expandedHeight = 25;
private readonly duration = 200;
init(container: HTMLElement): void {