Change footer class to prevent conflict with email bodies.

This commit is contained in:
Bill Thiede 2024-01-20 08:14:37 -08:00
parent 8c47f01758
commit 901785e47c
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ iframe {
white-space: nowrap; white-space: nowrap;
text-align: right; text-align: right;
} }
.footer { .lb-footer {
background-color: #eee; background-color: #eee;
color: #222; color: #222;
position: fixed; position: fixed;

View File

@ -452,7 +452,7 @@ fn view_header(query: &str, refresh_request: &RefreshingState) -> Node<Msg> {
fn view_footer(render_time_ms: u128) -> Node<Msg> { fn view_footer(render_time_ms: u128) -> Node<Msg> {
footer![ footer![
C!["footer"], C!["lb-footer"],
div![ div![
C!["content", "has-text-right", "is-size-7"], C!["content", "has-text-right", "is-size-7"],
format!("Render time {} ms", render_time_ms) format!("Render time {} ms", render_time_ms)