fix(context_drawer): remove scrollable

This commit is contained in:
Michael Aaron Murphy 2024-11-08 16:33:38 +01:00 committed by Michael Murphy
parent 5fdc2df9cd
commit 8c69491f2a

View file

@ -54,7 +54,8 @@ impl<'a, Message: Clone + 'static> ContextDrawer<'a, Message> {
);
let pane = column::with_capacity(2).push(header).push(
scrollable(container(drawer.into()).padding([0, space_l, space_l, space_l]))
container(drawer.into())
.padding([0, space_l, space_l, space_l])
.height(Length::Fill)
.width(Length::Shrink),
);