I have a v-navigation-drawer
and it's design must include a toggle expand button that overflows the drawer itself like so:
But for some unknown reason, I can't remove the overflow hidden property.
I tried to remove it like this:
.v-navigation-drawer {
overflow: auto;
.v-navigation-drawer__content {
overflow-x: auto;
}
}
No success:
Here the codepend reproducing the issue: https://codepen.io/aug-riedinger/pen/poLjJyq
Can anyone help on this?
Thanks
Just as kael said, you need to set the overflow property to
visible
for normal and mini variant. Like this: