From ff0c608b0111b76046ac1f4b5fb561feb90efaf6 Mon Sep 17 00:00:00 2001 From: simoleo89 Date: Sun, 14 Jun 2026 21:56:29 +0200 Subject: [PATCH] style(toolbar): vertically center the chat input box within the bar Raise the desktop chat-input frame from bottom-0 to bottom-[7px] so the 38px box sits centered in the 52px bar instead of flush at the bottom. --- src/components/toolbar/ToolbarView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/toolbar/ToolbarView.tsx b/src/components/toolbar/ToolbarView.tsx index bf86eda..ec10799 100644 --- a/src/components/toolbar/ToolbarView.tsx +++ b/src/components/toolbar/ToolbarView.tsx @@ -56,7 +56,7 @@ export const ToolbarView: FC<{ isInRoom: boolean }> = props => ); const visibilityVariant = 'visible'; - const compactFramePosition = 'bottom-[90px] min-[1700px]:bottom-0'; + const compactFramePosition = 'bottom-[90px] min-[1700px]:bottom-[7px]'; const mobileOnlyClasses = isTouchLayout ? '' : 'min-[1700px]:hidden'; const desktopBlockClasses = isTouchLayout ? 'hidden' : 'hidden min-[1700px]:block'; const desktopFlexClasses = isTouchLayout ? 'hidden' : 'hidden min-[1700px]:flex';