diff --git a/web/app/src/App.vue b/web/app/src/App.vue index 2646ef5e..c877d1e6 100644 --- a/web/app/src/App.vue +++ b/web/app/src/App.vue @@ -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 { diff --git a/web/app/src/components/JobsTable.vue b/web/app/src/components/JobsTable.vue index 085cf523..2aa618f6 100644 --- a/web/app/src/components/JobsTable.vue +++ b/web/app/src/components/JobsTable.vue @@ -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)); }