Add horizontal scroll to REPL outputs (#33247)

Release Notes:

- Made the horizontal outputs scrollable in REPL
This commit is contained in:
Stanislav Alekseev 2025-06-24 10:15:20 +03:00 committed by GitHub
parent 4cd4d28531
commit 668d5eef3b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -221,7 +221,9 @@ impl Output {
};
h_flex()
.id("output-content")
.w_full()
.overflow_x_scroll()
.items_start()
.child(div().flex_1().children(content))
.children(match self {