Fixed design

This commit is contained in:
Torsten Schulz
2024-09-11 22:34:59 +02:00
parent 74c3009a21
commit ea9e222aa3
3 changed files with 14 additions and 1 deletions

View File

@@ -75,15 +75,21 @@ export default {
display: flex;
height: 100%;
overflow: hidden;
width: 100%;
}
.navigation {
width: 10em;
width: 13em;
background-color: #e0e0e0;
display: flex;
flex-direction: column;
padding: 0.5rem;
}
.content {
flex: 1;
width: 100%;
height:calc(100% - 2.5rem);
overflow: auto;
padding: 0 0.35em;
}
.navigation > a{
text-decoration: none;

View File

@@ -10,7 +10,13 @@ body {
}
h1 {
border-bottom: 1px solid #000000;
margin: 0;
height: 3rem;
padding: 0 0.5rem;
}
#app {
flex: 1;
width: 100%;
height: 100%;
overflow: hidden;
}

View File

@@ -665,6 +665,7 @@ button:hover {
.columns {
display: flex;
justify-content: space-between;
width: calc(100% - 1em);
}
.column {