project search: Fix text cutoff in options help text (#26098)

Closes #25495

Release Notes:

- N/A
This commit is contained in:
Ben Kunkle 2025-03-04 19:15:11 -06:00 committed by GitHub
parent 674fb7621f
commit ed13e05855
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -372,7 +372,7 @@ impl Render for ProjectSearchView {
let page_content = page_content.map(|text| div().child(text)); let page_content = page_content.map(|text| div().child(text));
v_flex() h_flex()
.size_full() .size_full()
.items_center() .items_center()
.justify_center() .justify_center()
@ -383,7 +383,6 @@ impl Render for ProjectSearchView {
v_flex() v_flex()
.id("project-search-landing-page") .id("project-search-landing-page")
.overflow_y_scroll() .overflow_y_scroll()
.max_w_80()
.gap_1() .gap_1()
.child(heading_text) .child(heading_text)
.children(page_content), .children(page_content),