Reputation: 43
How to add a colored lateral border on only one side of a v-card component.
Example:
Upvotes: 4
Views: 14821
Reputation: 172
You can target the specific Vuetify class. You can use Chrome Dev Tools to find out what class the v-card has and you can modify it using that class.
Example:
.v-content .v-card.v-sheet.theme--light {
background-color: #ffffff !important;
border-left: 5px solid red !important
}
Upvotes: 9