solid-bottomsheet
solid-bottomsheet copied to clipboard
Support google map
we have problem when using google map, i can't click map...
Without knowing anything further about this (please provide additional infos), I’d assume, you haven’t changed the default css. Thus, user’s clicks trigger the backdrop overlay and close the overlay. And since you don’t want that to happen, you’d have to change that behaviour
I just saw that this is also a todo in the readme:
(Feat) Non-blocking view
In the CSS change these things:
.sb-overlay {
…
/* background-color: rgba(0, 0, 0, 0.5); */
pointer-events: none;
}
.sb-content {
…
pointer-events: all;
}