fix: make maximized window fill entire screen with 100vh height

- Add height: 100vh !important to maximized window-element
- Add width: 100vw !important to maximized window-element
- Window now fills entire screen (1920x1080) when maximized
- Recovers 28px of vertical space previously lost to minibar offset
This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-03-03 13:36:15 -03:00
parent befa48edfb
commit 054e57e074

View file

@ -271,6 +271,8 @@ body.window-maximized .bg-svg {
body.window-maximized .window-element {
z-index: 9998 !important; /* Lower than minibar's 9999 */
top: 0 !important; /* No minibar offset - start at top */
height: 100vh !important; /* Fill entire screen height */
width: 100vw !important; /* Fill entire screen width */
}
/* Ensure window body is opaque */