[Vuejs]-How to remove container margin in vuetify?

0👍

You can overwrite the attribute in the class where you are using it, as follows, it is overwritten in the css file of your class, or you can make a css file with the code and include it in each class where you need it

.row{
     margin-right: 0px
}

Leave a comment