diff --git a/src/components/Sidebar.jsx b/src/components/Sidebar.jsx index 513f997..b06f56e 100644 --- a/src/components/Sidebar.jsx +++ b/src/components/Sidebar.jsx @@ -595,9 +595,44 @@ function Sidebar({ - {/* Search Filter and Actions */} + {/* Action Buttons - Desktop only - Always show when not loading */} + {!isLoading && !isMobile && ( +
+
+ + +
+
+ )} + + {/* Search Filter - Only show when there are projects */} {projects.length > 0 && !isLoading && ( -
+
)}
- - {/* Action Buttons - Desktop only */} - {!isMobile && ( -
- - -
- )}
)} @@ -1392,4 +1394,4 @@ function Sidebar({ ); } -export default Sidebar; \ No newline at end of file +export default Sidebar;