From cfcaa419cb589132cd33bcb196fc074b90d131b1 Mon Sep 17 00:00:00 2001 From: vvzvlad Date: Wed, 17 Jun 2026 05:03:23 +0300 Subject: [PATCH] feat(ai-chat): shrink chat message font size Reduce the default font size of chat messages to create a smaller, denser view. This adjustment cascades into user bubbles, assistant markdown, and tool cards while preserving the size of explicit Mantine labels. Improves readability and allows more content to fit within the chat window. --- apps/client/src/features/ai-chat/components/ai-chat.module.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/client/src/features/ai-chat/components/ai-chat.module.css b/apps/client/src/features/ai-chat/components/ai-chat.module.css index 419fee2f..04572305 100644 --- a/apps/client/src/features/ai-chat/components/ai-chat.module.css +++ b/apps/client/src/features/ai-chat/components/ai-chat.module.css @@ -8,6 +8,9 @@ .messages { flex: 1 1 auto; min-height: 0; + /* Smaller, denser chat text (cascades into user bubble + assistant markdown + + tool cards; the explicit-size Mantine labels keep their own size). */ + font-size: var(--mantine-font-size-sm); } .messageRow {