From 0dfa48285f289ec9f55f62d27aa50c5f35fffffd Mon Sep 17 00:00:00 2001 From: tusharmagar Date: Mon, 9 Feb 2026 21:56:51 +0530 Subject: [PATCH] style: update prompt input box to be less rounded and have no shadow --- apps/x/apps/renderer/src/App.tsx | 2 +- apps/x/apps/renderer/src/components/chat-button.tsx | 2 +- apps/x/apps/renderer/src/components/chat-sidebar.tsx | 2 +- apps/x/apps/renderer/src/components/ui/input-group.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/x/apps/renderer/src/App.tsx b/apps/x/apps/renderer/src/App.tsx index 152b1ffd..150cd2ce 100644 --- a/apps/x/apps/renderer/src/App.tsx +++ b/apps/x/apps/renderer/src/App.tsx @@ -360,7 +360,7 @@ function ChatInputInner({ }, [controller]) return ( -
+
-
+
)} -
+
{mentionHighlights.hasHighlights && (
) { data-slot="input-group" role="group" className={cn( - "group/input-group border-input dark:bg-input/30 relative flex w-full items-center rounded-md border shadow-xs transition-[color,box-shadow] outline-none", + "group/input-group border-input dark:bg-input/30 relative flex w-full items-center rounded-sm border shadow-none transition-[color,box-shadow] outline-none", "h-9 min-w-0 has-[>textarea]:h-auto", // Variants based on alignment.