Is there a way to customize Vuetify component styles without using variables? Currently, the v-btn component has its own styles and using scoped styling doesn't work. I find it cumbersome to have to use !important for each individual CSS property. Are there any alternative methods for applying custom styles to Vuetify components?
new Vue({ el: '#app' })
.block{
background: rgb(3, 237, 245) ;
margin: 10px;
height: 60px;
box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.267);
border-radius: 15px;
font-family: 'Cookie' ;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
cursor: pointer;
transition: all 0.5s ease-in-out;
width: 200px;
}
.wrapper{
background-color: rgb(0, 126, 131);
}
.block:hover{
box-shadow: 5px 10px 10px 5px rgba(0, 0, 0, 0.267);
transform: none;
}
.block:active{
box-shadow: inset 2px 2px 10px 5px rgba(0, 0, 0, 0.267);
transform: none;
}
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/vuetify/dist/vuetify.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
</head>
<body>
<div id="app">
<v-app>
<v-content>
<v-container class="wrapper">
<div >
<v-btn class="block " >
V-Button
</v-btn>
<button class="block " >
Button
</button>
</div>
</v-container>
</v-content>
</v-app>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vuetify/dist/vuetify.js"></script>
</body>
</html>