mirror of
https://github.com/ByteAtATime/raycast-linux.git
synced 2025-12-23 10:11:57 +00:00
fix: make content scrollable full width
This commit is contained in:
parent
1e0c61e2f4
commit
f13cf535d6
1 changed files with 5 additions and 3 deletions
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue