fix: make content scrollable full width

This commit is contained in:
ByteAtATime 2025-11-30 18:42:49 -08:00
parent 1e0c61e2f4
commit f13cf535d6
No known key found for this signature in database

View file

@ -392,9 +392,11 @@ impl ClipboardHistoryScreen {
.center_x(Length::Fill)
.center_y(Length::Fill)
} else {
container(scrollable(text(t).size(14).color(text_color)))
.height(Length::Fill)
.width(Length::Fill)
container(
scrollable(text(t).size(14).color(text_color)).width(Length::Fill),
)
.height(Length::Fill)
.width(Length::Fill)
}
}
ClipboardContent::Image(img) => {