add a little menu bar

This commit is contained in:
insects 2025-02-07 15:22:24 +01:00
parent 75092f3e0e
commit f20d1cc74b
2 changed files with 16 additions and 0 deletions

View file

@ -159,6 +159,11 @@ pub fn main_page(
.header { .header {
div {} div {}
.side { .side {
.menu {
span { "Beacon " (env!("CARGO_PKG_VERSION")) }
a href="/changelog" { "Changelog" }
a href="/logout" { "Log out" }
}
details { details {
summary { "Filters" } summary { "Filters" }
form { form {

View file

@ -17,6 +17,12 @@ section {
align-items: center; align-items: center;
} }
.side {
display: flex;
flex-direction: column;
align-items: end;
}
select { select {
width: 100%; width: 100%;
} }
@ -145,3 +151,8 @@ h2.clock {
summary:hover { summary:hover {
cursor: pointer; cursor: pointer;
} }
.menu {
display: flex;
gap: 5px;
}