From d9788e0d3de086ae815fb55f9e0dafeac89ac5d8 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Tue, 17 May 2022 18:55:43 -0500 Subject: Increase the vertical height of the draggable area to center the 3 OS titlebar-buttons --- src/features/appearance/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/features') diff --git a/src/features/appearance/index.ts b/src/features/appearance/index.ts index aa569af73..5b005586e 100644 --- a/src/features/appearance/index.ts +++ b/src/features/appearance/index.ts @@ -286,8 +286,8 @@ function generateShowDragAreaStyle(accentColor) { background-color: ${accentColor}; } #root { - /** Remove 22px from app height, otherwise the page will be too high */ - height: calc(100% - 22px); + /** Remove 28px from app height, otherwise the page will be too high */ + height: calc(100% - 28px); } `; } @@ -304,7 +304,7 @@ function generateVerticalStyle(widthStr, alwaysShowWorkspaces) { } const width = Number(widthStr); const sidebarWidth = width - 4; - const verticalStyleOffset = 23; + const verticalStyleOffset = 29; return ` .sidebar { -- cgit v1.2.3-54-g00ecf