I want to increase the font-size of the <th>
to 20px in Vuetify table v-data-table
. But it stays at 12px.
I tried this:
table.v-table thead tr th {
font-size: 20px!important;
}
This is my data table:
<v-data-table
:headers="headers"
:items="myjson"
class="elevation-1"
>
<template v-slot:items="props">
<td>{{ props.item.ApplicationType }}</td>
</template>
</v-data-table>
I expect the font-size of the thead to be 20px. But it remains at 12px while inspecting.