feat(collections): improve properties dropdown on mobile

This commit is contained in:
Elian Doran
2026-02-15 13:54:01 +02:00
parent 5a3c7355c1
commit 48773636ca
2 changed files with 6 additions and 0 deletions

View File

@@ -11,6 +11,10 @@
}
}
body.mobile .geo-view > .collection-properties {
z-index: 2500;
}
.geo-map-container {
height: 100%;
overflow: hidden;

View File

@@ -83,6 +83,8 @@ function ViewOptions({ note, viewType }: { note: FNote, viewType: ViewTypeOption
<Dropdown
buttonClassName="bx bx-cog icon-action"
hideToggleArrow
dropdownContainerClassName="mobile-bottom-menu"
mobileBackdrop
>
{properties.map(property => (
<ViewProperty key={property.label} note={note} property={property} />