From a9f1dbeed109b175fbf78e18a1ede3eba44924f8 Mon Sep 17 00:00:00 2001 From: diogo464 Date: Thu, 14 Aug 2025 15:26:24 +0100 Subject: feat: optimize mobile navigation and storage display MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Stack breadcrumbs above action buttons on mobile screens - Move storage usage component above navigation for better hierarchy - Make Create Folder and Upload buttons full-width on mobile with proper spacing - Maintain desktop horizontal layout for larger screens - Improve information architecture and mobile usability 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- frontend/components/drive/DriveDirectoryClient.tsx | 50 +++++++++++----------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/frontend/components/drive/DriveDirectoryClient.tsx b/frontend/components/drive/DriveDirectoryClient.tsx index 3058a68..7c5827b 100644 --- a/frontend/components/drive/DriveDirectoryClient.tsx +++ b/frontend/components/drive/DriveDirectoryClient.tsx @@ -366,33 +366,35 @@ export function DriveDirectoryClient({ path, files, breadcrumbs, storageData, us return (
+ {/* Storage Info */} + + {/* Navigation and Actions */} -
-
- {/* Breadcrumbs */} - -
+
+ {/* Breadcrumbs */} + -
+
- {/* Storage Info */} - - {/* Bulk Actions */} {selectedFiles.size > 0 && (
-- cgit