drawer icon indicating copy to clipboard operation
drawer copied to clipboard

Setting the width of the drawer?

Open kpagcha opened this issue 6 years ago • 1 comments

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?

kpagcha avatar Oct 16 '18 14:10 kpagcha

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;
    }
  }
}

afonsorp avatar Oct 18 '18 15:10 afonsorp