frontend: Minor work to make it a little less terrible

This commit is contained in:
Lennart
2025-04-13 18:42:13 +02:00
parent 8976832e6b
commit a60d8deacc
8 changed files with 92 additions and 29 deletions

View File

@@ -1,7 +1,39 @@
body {
font-family: sans-serif;
margin: 0;
}
* {
box-sizing: border-box;
}
#app {
padding: 12px;
}
header {
background: #EEE;
height: 80px;
font-weight: bold;
display: flex;
align-items: center;
padding: 12px;
font-size: 2em;
a {
text-decoration: none;
color: black;
}
.logout_form {
margin-left: auto;
}
}
.login_window {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}