From 8b9d3d86cc4a291b03a9dd58acd2447e2856bf5a Mon Sep 17 00:00:00 2001 From: ediblerope Date: Thu, 16 Apr 2026 15:11:20 +0100 Subject: [PATCH] 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 --- templates/vesktop-quickCss.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/templates/vesktop-quickCss.css b/templates/vesktop-quickCss.css index 22b7e78..5ba2bc2 100644 --- a/templates/vesktop-quickCss.css +++ b/templates/vesktop-quickCss.css @@ -37,3 +37,8 @@ [class*="toolbar_"] { 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; +}