I can change sidebar width using below code
.v-navigation-drawer {
width: 60px !important;
}
But width also affect sidebar expanded width. I want to change the width of navigation drawer during collapsed only.
I can change sidebar width using below code
.v-navigation-drawer {
width: 60px !important;
}
But width also affect sidebar expanded width. I want to change the width of navigation drawer during collapsed only.
Okay. I found the solution when inspect mode.
.v-navigation-drawer.v-navigation-drawer--rail {
width: 60px !important;
}