When v-data-table is on mobile view, the divider between items is not clear. How can I custom this divider, for example linewidth and color?
What I want to do: Custom divider on mobile view
Code sample from vuetify doc
<template>
<v-data-table
:headers="headers"
:items="desserts"
:items-per-page="5"
class="elevation-1"
></v-data-table>
</template>