How do I customize the appearance of my v-list-item-group when it is in the active state?
<v-list>
<v-list-item-group v-model="day" color="green">
<v-list-item v-for="(item, i) in items" :key="i">
<v-list-item-content>
<v-list-item-title v-text="item.day"></v-list-item-title>
<v-list-item-title v-text="item.title"></v-list-item-title>
<v-list-item-subtitle v-text="item.date"></v-list-item-subtitle>
</v-list-item-content>
</v-list-item>
</v-list-item-group>
</v-list>
This is the desired result.
https://i.stack.imgur.com/rP44a.png
I have attempted to apply custom styles using CSS but nothing seems to work:
.v-list-group-active {
color: green;
}