Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hyperdrive/packages/app-store/public-ui/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function App() {
};

return (
<div className="bg-white dark:bg-stone grow self-stretch min-h-screen px-4 pb-32 md:pb-0 md:px-0 overflow-y-auto">
<div className="bg-white dark:bg-stone grow self-stretch min-h-screen px-4 md:px-0 overflow-y-auto">
<Router basename={getBasename()}>
<NavBar />
<Routes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ const NavBar: React.FC = () => {
<nav className="hidden md:flex items-center gap-2 self-stretch flex-wrap">
{lesBoutons}
</nav>
<nav className="fixed md:hidden bottom-0 left-0 right-0 p-2 bg-iris flex items-center gap-2 justify-center flex-wrap z-20">
{lesBoutons}
</nav>
</header>
);
};
Expand Down