Compare commits

...

1 Commits

Author SHA1 Message Date
Antonio Scandurra
8107e6d9db Occlude only modal and not the space around it used to center it 2024-03-11 18:12:24 +01:00

View File

@@ -139,21 +139,15 @@ impl Render for ModalLayer {
return div();
};
div()
.occlude()
.absolute()
.size_full()
.top_0()
.left_0()
.child(
v_flex()
.h(px(0.0))
.top_20()
.flex()
.flex_col()
.items_center()
.track_focus(&active_modal.focus_handle)
.child(h_flex().child(active_modal.modal.view())),
)
div().absolute().size_full().top_0().left_0().child(
v_flex()
.h(px(0.0))
.top_20()
.flex()
.flex_col()
.items_center()
.track_focus(&active_modal.focus_handle)
.child(h_flex().occlude().child(active_modal.modal.view())),
)
}
}