I have using Nuxt.js and Vuetify.js in my project. I need to adjust v-divider width, so I tried to write css in my code. But it didn't work. Does anyone teach me how to change v-divider width in Vuetify components?
<template>
<divider class="test"/>
</template>
<style lang="scss" scoped>
.test{ width:100px}
</style>