drawer
drawer copied to clipboard
Setting the width of the drawer?
I am trying to change the width of the drawer drawer-nav
but it just screws up the entire thing. Isn't there an option I can pass when initializing the plugin?
I'm also looking for this. for now my solution is changing my less files to have this:
.drawer--left{
.drawer-nav {
width: @drawerSize;
left: -@drawerSize;
}
&.drawer-open{
.drawer-nav {
left: 0;
}
}
}