I want to style my v-data-table
header like the one you see in the image below.
So far, I've tried adding the style directly with CSS:
<v-data-table
:headers="headers"
:items="desserts"
hide-default-footer
class="custom_table_class"
>
</v-data-table>
.custom_table_class > div > table > thead {
background-color: #f0f2f5;
border-radius: 10px;
}
The code above only changes the background color but, not the border radius.
Is there a way to make something like the image you see with vuetify's v-data-table
.
Any help would be appreciated.