12 lines
249 B
Rust
12 lines
249 B
Rust
use dioxus::prelude::*;
|
|
|
|
#[component]
|
|
pub(crate) fn StickyBottom(children: Element) -> Element {
|
|
rsx! {
|
|
div {
|
|
class: "fixed bottom-0 left-0 right-0 flex flex-col pointer-events-none",
|
|
{children}
|
|
}
|
|
}
|
|
}
|