add some CSS to the customers table

This commit is contained in:
Andreas Zweili 2021-01-26 22:34:39 +01:00
parent 73cf9d84c6
commit 71cdf24aeb

View File

@ -1,7 +1,10 @@
<template> <template>
<table> <div class="row">
<div class="col">
<div class="table-container">
<table class="table table-hover table-bordered">
<tr> <tr>
<th>Customer</th> <th class="orderable">Customer</th>
<th>Description</th> <th>Description</th>
</tr> </tr>
<tr v-for="customer in customers" :key="customer.id"> <tr v-for="customer in customers" :key="customer.id">
@ -11,6 +14,9 @@
<td>{{ customer.description }}</td> <td>{{ customer.description }}</td>
</tr> </tr>
</table> </table>
</div>
</div>
</div>
</template> </template>
<script> <script>