Conversation
- TopBar: responsive layout with mobile hamburger menu, hide non-essential elements on small screens - TopBar: show only current page breadcrumb on mobile, full navigation on desktop - TopBar: improved spacing and touch targets (px-2 on mobile, px-4 on desktop) - TopBar: hide theme toggle, mode badge, and API badge on mobile for cleaner UI - ObjectDataTable: add useIsMobile hook import for future card view implementation - Improved mobile navigation with SidebarTrigger button (44px touch target) Addresses Priority 1 & 2 from mobile UX optimization plan Agent-Logs-Url: https://github.com/objectstack-ai/framework/sessions/1135b7b4-5568-46a1-9ec4-dd63d3f120fb Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
Claude created this pull request from a session on behalf of
hotlong
April 22, 2026 06:48
View session
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
| import { useState, useEffect } from 'react'; | ||
| import { useParams } from '@tanstack/react-router'; | ||
| import { useScopedClient } from '@/hooks/useObjectStackClient'; | ||
| import { useIsMobile } from '@/hooks/use-mobile'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements Priority 1 & 2 mobile UX optimizations from the comprehensive mobile user experience evaluation: responsive TopBar layout and improved mobile navigation patterns.
Changes
TopBar Mobile Optimization (
apps/studio/src/components/top-bar.tsx)px-2 sm:px-4,gap-1 sm:gap-1.5Mobile Navigation
sm:hidden)useIsMobile()hookFoundation for Future Enhancements (
apps/studio/src/components/ObjectDataTable.tsx)useIsMobilehook to enable responsive data table card view implementationBefore/After
Mobile (< 640px)
Desktop (≥ 640px)