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 {
div {}
.side {
.menu {
span { "Beacon " (env!("CARGO_PKG_VERSION")) }
a href="/changelog" { "Changelog" }
a href="/logout" { "Log out" }
}
details {
summary { "Filters" }
form {

View file

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