Collapse Midnight title bar grid row to remove 32px top gap in Vesktop

Override the base grid-template-rows to replace the 32px title bar
reservation with 12px padding that matches the bottom window edge.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
ediblerope 2026-04-16 15:11:20 +01:00
parent a46f587695
commit 8b9d3d86cc

View file

@ -37,3 +37,8 @@
[class*="toolbar_"] { [class*="toolbar_"] {
padding-right: 0 !important; padding-right: 0 !important;
} }
/* Collapse Midnight's 32px title bar grid row, keep 12px to match bottom window edge */
[class*="base__"] {
grid-template-rows: [top] 12px [titleBarEnd] 0px [noticeEnd] 1fr [end] !important;
}