Skip to content

Commit

Permalink
fix(ui): prevent fab to overlap table pagination
Browse files Browse the repository at this point in the history
Fixes #3426
  • Loading branch information
robertsLando committed Nov 15, 2023
1 parent 3f630fd commit 9dbe5bf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/nodes-table/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
class="elevation-1"
show-expand
show-select
style="margin-bottom: 50px; padding-bottom: 0 !important"
>
<template v-slot:top>
<v-row class="ma-2" justify-start>
Expand Down
7 changes: 6 additions & 1 deletion src/views/SmartStart.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
<template>
<v-container fluid class="pa-4">
<v-data-table :headers="headers" :items="items" class="elevation-1">
<v-data-table
:headers="headers"
:items="items"
class="elevation-1"
style="margin-bottom: 80px"
>
<template v-slot:top>
<h2 class="ma-3">Provisioning Entries</h2>
</template>
Expand Down

0 comments on commit 9dbe5bf

Please sign in to comment.