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:
parent
befa48edfb
commit
054e57e074
1 changed files with 2 additions and 0 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue