Browse Source

Merge pull request #2739 from systemctls/dev-#2737

fix: [ui] Scrolling in the tables
pull/2741/head
navi 2 years ago committed by GitHub
parent
commit
f3eaac1873
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      packages/nc-gui/components/project/auditTab/Audit.vue

8
packages/nc-gui/components/project/auditTab/Audit.vue

@ -8,7 +8,7 @@
{{ $t('general.reload') }} {{ $t('general.reload') }}
</v-btn> </v-btn>
</v-toolbar> </v-toolbar>
<v-container class="h-100 d-flex flex-column"> <v-container class="d-flex flex-column tableScroll">
<v-simple-table v-if="audits" dense style="max-width: 1000px; overflow: auto" class="mx-auto flex-grow-1"> <v-simple-table v-if="audits" dense style="max-width: 1000px; overflow: auto" class="mx-auto flex-grow-1">
<thead> <thead>
<tr> <tr>
@ -101,4 +101,8 @@ export default {
}; };
</script> </script>
<style scoped></style> <style scoped lang="scss">
.tableScroll {
height: calc(90vh - 150px);
}
</style>

Loading…
Cancel
Save