feat: update bottom navigation to support tablet view in mobile layout

This commit is contained in:
Linus Rath
2026-03-11 18:13:19 +01:00
parent d23e9a642c
commit 61459c4923
+2 -2
View File
@@ -1299,8 +1299,8 @@ export default function Home() {
</div>
</div>
{/* Mobile Bottom Navigation */}
{isMobile && activeView !== "viewer" && (
{/* Bottom Navigation - mobile and tablet */}
{(isMobile || isTablet) && activeView !== "viewer" && (
<NavigationRail orientation="horizontal" />
)}
</div>