Show navbar at bottom of page too.

This commit is contained in:
Bill Thiede 2023-09-24 13:13:26 -07:00
parent 01e5ea14ab
commit a8f538eddf

View File

@ -734,7 +734,8 @@ fn view_desktop(model: &Model) -> Node<Msg> {
}; };
div![ div![
view_header(&model.query, &model.refreshing_state), view_header(&model.query, &model.refreshing_state),
section![C!["section"], div![C!["container"], content],] section![C!["section"], div![C!["container"], content]],
view_header(&model.query, &model.refreshing_state),
] ]
} }
@ -746,7 +747,8 @@ fn view_mobile(model: &Model) -> Node<Msg> {
}; };
div![ div![
view_header(&model.query, &model.refreshing_state), view_header(&model.query, &model.refreshing_state),
section![C!["section"], div![C!["content"], content],] section![C!["section"], div![C!["content"], content]],
view_header(&model.query, &model.refreshing_state),
] ]
} }