diff client/src/components/ui/UITableBody.vue @ 2640:4bcb26542767

client: use new btn-xs class in tables
author Markus Kottlaender <markus@intevation.de>
date Thu, 14 Mar 2019 11:23:42 +0100
parents 9ae2a2f758bb
children 5bc657f60fd3
line wrap: on
line diff
--- a/client/src/components/ui/UITableBody.vue	Thu Mar 14 11:15:43 2019 +0100
+++ b/client/src/components/ui/UITableBody.vue	Thu Mar 14 11:23:42 2019 +0100
@@ -9,7 +9,10 @@
     <div
       v-for="(item, index) in data"
       :key="key(index)"
-      :class="['border-top row mx-0', { active: active === item }]"
+      :class="[
+        'border-top row mx-0 align-items-center',
+        { active: active === item }
+      ]"
     >
       <slot :item="item" :index="index"></slot>
     </div>