How can I change the styling of the sidenav like max-width on expansion and min-width on collapsed?
sunilsp77 opened this issue · comments
Sunil Prakash commented
christdeme commented
@sunilsp77 do you find the solution?
Sunil Prakash commented
@sunilsp77 do you find the solution?
yes
`const navWidthCollapsed = 64;
const navWidthExpanded = 160;
<SideNav
onSelect={(selected) => {
const to = selected;
if (props.location.pathname !== to) {
props.history.push(to);
}
}}
onToggle={onToggle}
style={{
backgroundColor: "#544b4b",
position: "fixed",
minWidth: expanded ? navWidthExpanded : navWidthCollapsed,
}}
>`