Skip to content

Commit 6155026

Browse files
committed
Show filters in bottom sheet on mobile
1 parent f6baf64 commit 6155026

File tree

10 files changed

+498
-321
lines changed

10 files changed

+498
-321
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"react-leaflet": "^5.0.0",
2626
"react-leaflet-custom-control": "^1.5.0",
2727
"react-leaflet-markercluster": "^5.0.0-rc.0",
28+
"react-modal-sheet": "^5.2.1",
2829
"react-range-slider-input": "^3.3.2",
2930
"react-router": "^7.9.6",
3031
"valibot": "^0.21.0"

pnpm-lock.yaml

Lines changed: 90 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/Navigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const Navigation = () => {
1111
</Link>
1212
)
1313
return (
14-
<div className="absolute top-0 z-[1000] flex h-5 w-full items-center gap-1 overflow-hidden border-b-2 border-gray-400 bg-white px-2 text-xs leading-none">
14+
<div className="absolute top-0 z-[1000] flex h-5 w-full items-center gap-1 overflow-x-auto overflow-y-hidden border-b-2 border-gray-400 bg-white px-2 text-xs leading-none">
1515
<NavLink to="/" text="Mapa" />
1616
<NavLink to="/stats" text="Estadísticas" />
1717
{isLoggedIn && (

0 commit comments

Comments
 (0)