feat: allow clicking through the sticky bottom component

This commit is contained in:
2024-09-06 20:28:39 +02:00
parent 468742c53e
commit efaf81b938
3 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ use dioxus::prelude::*;
pub(crate) fn StickyBottom(children: Element) -> Element {
rsx! {
div {
class: "fixed bottom-0 left-0 right-0 flex flex-col",
class: "fixed bottom-0 left-0 right-0 flex flex-col pointer-events-none",
{children}
}
}