Reputation: 6004
I need to change the color of the Vuetify Timeline line. Currently it's grey, how to change it to red?
<template>
<v-timeline>
<v-timeline-item>timeline item</v-timeline-item>
<v-timeline-item class="text-right">timeline item</v-timeline-item>
<v-timeline-item>timeline item</v-timeline-item>
</v-timeline>
</template>
Upvotes: 2
Views: 2548
Reputation: 4638
You can apply below css. Depend on theme you can change .theme--light
.
.theme--light.v-timeline:before {
background: red;
}
Upvotes: 5