Better use of space on search table for desktop.

This commit is contained in:
2023-11-05 08:36:14 -08:00
parent 69558f15b4
commit 035508f3ad
2 changed files with 15 additions and 2 deletions

View File

@@ -610,6 +610,7 @@ fn view_thread(thread_set: &ThreadSet) -> Node<Msg> {
let subject = first_subject(&thread_node).unwrap_or("<No subject>".to_string());
set_title(&subject);
div![
C!["container"],
h1![C!["title"], subject],
view_message(&thread_node),
a![
@@ -736,7 +737,7 @@ fn view_desktop(model: &Model) -> Node<Msg> {
};
div![
view_header(&model.query, &model.refreshing_state),
section![C!["section"], div![C!["container"], content]],
section![C!["section"], content],
view_header(&model.query, &model.refreshing_state),
]
}