fortunar / react-sidemenu

React sidemenu component
57 stars 14 forks source link

How can I control the width of the menu? #1

Closed elgs closed 7 years ago

elgs commented 7 years ago

It seems the menu comes with a fixed width. How can I control the width of the menu? Thanks.

umarovt commented 7 years ago

We set width="auto" and maxWidth="400px". So if you wrap Sidemenu inside div that has custom smaller width than 400px, menu will adjust. This should solve your issue.

elgs commented 7 years ago

Thank you.