From 7d386c249af02c605693e0b07891a894dacd5f8d Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 19 Dec 2025 22:23:46 +0200 Subject: [PATCH] fix(right_pane_widget): toggle button clipped on desktop --- apps/client/src/layouts/desktop_layout.tsx | 1 + apps/client/src/stylesheets/style.css | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/client/src/layouts/desktop_layout.tsx b/apps/client/src/layouts/desktop_layout.tsx index e8a43955a6..601b0e643a 100644 --- a/apps/client/src/layouts/desktop_layout.tsx +++ b/apps/client/src/layouts/desktop_layout.tsx @@ -116,6 +116,7 @@ export default class DesktopLayout { .css("flex-grow", "1") .optChild(!fullWidthTabBar, new FlexContainer("row") + .class("tab-row-container") .child() .child(new TabRowWidget()) .optChild(isNewLayout, ) diff --git a/apps/client/src/stylesheets/style.css b/apps/client/src/stylesheets/style.css index f10ace6947..5ea6776ff9 100644 --- a/apps/client/src/stylesheets/style.css +++ b/apps/client/src/stylesheets/style.css @@ -1961,7 +1961,7 @@ body.electron.platform-darwin:not(.native-titlebar):not(.full-screen) #tab-row-l width: 80px; } -.tab-row-widget { +.tab-row-container { padding-inline-end: calc(100vw - env(titlebar-area-width, 100vw)); }