From 1f9aebdcfdcf39d4dba5da692a4273906dc5948a Mon Sep 17 00:00:00 2001 From: Darko Gjorgjijoski Date: Sat, 11 Apr 2026 21:11:14 +0200 Subject: [PATCH] style(ai): align chat drawer top bars to a single 48px row MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The conversation-list sidebar header and the chat panel header lived in separate columns with different heights — the "+ New conversation" wrapper was ~60px (p-3 + py-2 button) while the "AI Assistant" header was ~44px (p-3 + small icon/text). The resulting staircase looked unintentional. Pins both to h-12 (48px) so they form a single unified top bar across the drawer. Shrinks the "+ New conversation" button to text-xs / py-1 / px-2 so it fits the tighter height without clipping, and switches its alignment to center to match the compacter footprint. --- .../features/company/ai/components/AiChatConversationList.vue | 4 ++-- .../scripts/features/company/ai/components/AiChatDrawer.vue | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/scripts/features/company/ai/components/AiChatConversationList.vue b/resources/scripts/features/company/ai/components/AiChatConversationList.vue index dac0b2e1..07520e5c 100644 --- a/resources/scripts/features/company/ai/components/AiChatConversationList.vue +++ b/resources/scripts/features/company/ai/components/AiChatConversationList.vue @@ -17,10 +17,10 @@ async function remove(convo: AiConversationSummary, event: MouseEvent): Promise<