add a little menu bar
This commit is contained in:
parent
75092f3e0e
commit
f20d1cc74b
2 changed files with 16 additions and 0 deletions
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue