diff --git a/web/app/src/assets/base.css b/web/app/src/assets/base.css index 19a37d50..2178a132 100644 --- a/web/app/src/assets/base.css +++ b/web/app/src/assets/base.css @@ -101,6 +101,14 @@ body { background-color: var(--color-background-column); border-radius: var(--border-radius); padding: var(--spacer-sm); + + /* These two are necessary for the automatic resizing of the tasks table: */ + /* Ensures that the table cannot push down the bottom of the column element, + * and thus the column height is a stable reference. */ + overflow-y: auto; + /* Ensures the offsetParent of the table is the column itself; without this, + * offsetParent would be . */ + position: relative; } .col-1 { diff --git a/web/app/src/views/JobsView.vue b/web/app/src/views/JobsView.vue index 4536d9f2..8f2d30e2 100644 --- a/web/app/src/views/JobsView.vue +++ b/web/app/src/views/JobsView.vue @@ -240,17 +240,4 @@ export default { .isFetching { opacity: 50%; } - -#col-job-details { - /* These two are necessary for the automatic resizing of the tasks table: */ - - /* Ensures that the table cannot push down the bottom of the column element, - * and thus the column height is a stable reference. */ - overflow-y: scroll; - - /* Ensures the offsetParent of the table is the column itself; without this, - * offsetParent would be . */ - position: relative; -} -