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.
This commit is contained in:
simoleo89
2026-06-14 21:56:29 +02:00
parent 3d7feab40f
commit ff0c608b01
+1 -1
View File
@@ -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';