Web: tweak webapp layout

This commit is contained in:
Sybren A. Stüvel 2022-04-29 13:11:44 +02:00
parent 4ebf4f31f9
commit c07d2e3249
2 changed files with 2 additions and 8 deletions

View File

@ -220,7 +220,6 @@ h3.sub-title {
.col-1 {
grid-area: col-1;
max-height: calc(100vh - var(--header-height) - var(--footer-height) - 2*var(--grid-gap));
overflow: scroll;
}
.col-2 {

View File

@ -43,7 +43,7 @@ export default {
initialSort: [
{ column: "updated", dir: "desc" },
],
height: "100%",
height: "99%",
data: [], // Will be filled via a Flamenco API request.
selectable: 1, // Only allow a single row to be selected at a time.
};
@ -125,11 +125,6 @@ export default {
.job-list-container {
font-family: 'Noto Mono', monospace;
font-size: smaller;
height: calc(100% - var(--action-bar-height) - 2em);
}
.job-list {
outline: 2px solid lime;
outline-offset: -1px;
height: calc(100% - var(--action-bar-height));
}
</style>