diff --git a/client/web/admin/src/mixins/listHelpers.js b/client/web/admin/src/mixins/listHelpers.js index f12b26cdf..f95609b56 100644 --- a/client/web/admin/src/mixins/listHelpers.js +++ b/client/web/admin/src/mixins/listHelpers.js @@ -10,7 +10,7 @@ export default { filter: {}, pagination: { - limit: 10, + limit: 100, pageCursor: undefined, prevPage: '', nextPage: '', diff --git a/client/web/admin/src/themes/corteza-base/custom.scss b/client/web/admin/src/themes/corteza-base/custom.scss index 1bb91b399..fee90ccee 100644 --- a/client/web/admin/src/themes/corteza-base/custom.scss +++ b/client/web/admin/src/themes/corteza-base/custom.scss @@ -49,6 +49,24 @@ th { white-space: nowrap; } +.wrap-with-vertical-gutters { + margin-top: -0.25rem; + + > * { + margin-top: 0.25rem; + } +} + +// custom height for resource lists with buttons +.custom-resource-height { + height: calc(100vh - 115px); +} + +// to remove the gap on top of the sticky header table +.b-table-sticky-header > .table.b-table > thead > tr > th { + border: 0; +} + .v-select { .vs__search { margin-top: 0.375rem; diff --git a/client/web/admin/src/views/Automation/Session/List.vue b/client/web/admin/src/views/Automation/Session/List.vue index 9a7895d2e..51ca4cea8 100644 --- a/client/web/admin/src/views/Automation/Session/List.vue +++ b/client/web/admin/src/views/Automation/Session/List.vue @@ -1,9 +1,11 @@