solid-bottomsheet icon indicating copy to clipboard operation
solid-bottomsheet copied to clipboard

Support google map

Open centratelemedia opened this issue 2 years ago • 3 comments

we have problem when using google map, i can't click map...

centratelemedia avatar Nov 06 '23 08:11 centratelemedia

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

ericwaetke avatar Nov 08 '23 10:11 ericwaetke

I just saw that this is also a todo in the readme: (Feat) Non-blocking view

ericwaetke avatar Nov 08 '23 10:11 ericwaetke

In the CSS change these things:

.sb-overlay {
	…
	/* background-color: rgba(0, 0, 0, 0.5); */
	pointer-events: none;
}
.sb-content {
	…
	pointer-events: all;
}

ericwaetke avatar Nov 08 '23 11:11 ericwaetke