diff options
| author | MaheshtheDev <[email protected]> | 2025-10-29 06:38:16 +0000 |
|---|---|---|
| committer | MaheshtheDev <[email protected]> | 2025-10-29 06:38:16 +0000 |
| commit | 2145340c11bfafc037f417f4e4e41b6593f3964e (patch) | |
| tree | bf95d534daa8039aea56a93a88a36fc9d1d47381 /apps/web/components/views | |
| parent | fix: add type safety annotations and fix hook dependencies in chat (#521) (diff) | |
| download | supermemory-2145340c11bfafc037f417f4e4e41b6593f3964e.tar.xz supermemory-2145340c11bfafc037f417f4e4e41b6593f3964e.zip | |
fix: skeleton and mobile chat improvments (#541)10-28-fix_skeleton_and_mobile_chat_improvments
### Improved mobile responsiveness across chat interface and memory list with better loading states.
### What changed?
- Added responsive padding in chat page for mobile devices
- Enhanced header layout for chat titles with proper truncation and responsive text sizes
- Replaced the simple loading spinner in memory list with skeleton loading cards
- Improved message container width constraints on mobile devices
Diffstat (limited to 'apps/web/components/views')
| -rw-r--r-- | apps/web/components/views/chat/chat-messages.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/components/views/chat/chat-messages.tsx b/apps/web/components/views/chat/chat-messages.tsx index babaa9a2..05e8afdf 100644 --- a/apps/web/components/views/chat/chat-messages.tsx +++ b/apps/web/components/views/chat/chat-messages.tsx @@ -428,7 +428,7 @@ export function ChatMessages() { > <div className={cn( - "flex flex-col gap-2 max-w-4/5", + "flex flex-col gap-2 md:max-w-4/5", message.role === "user" ? "bg-accent/50 px-3 py-1.5 border border-border rounded-lg" : "", |