I am working on project vujs add vutify but I should to use commponent.
.horizontal{
border-color: #F4F4F4 !important;
border-width: 2px ;
/*border-width: none !important;*/
}
<v-divider horizontal class=" horizontal hidden-md-and-up" ></v-divider>
Anyone can Idea?You probably run into specificity issue with your css, meaning other css is to "powerful". You can try this code below that makes it more specific targeted. Note I did changes to both the component class name and the css.
.theme--light.v-divider.v-divider--horizontal {
border-color: #F4F4F4 !important;
border-width: 2px;
/*border-width: none !important;*/
}
<v-divider horizontal class="v-divider--horizontal hidden-md-and-up"></v-divider>