Hello @Himaladin , I couldn’t reopen the earlier thread which you solved, so I created a new topic.
The code you gave works perfectly, except in one instance, whenever I open a slide-in details screen, the nav bar expands to its original width. This only happens if the nav bar is expanded by default, so it doesn’t happen if the sidebar’s “collapse” was set to collapse.
Sharing screenshots of before and after opening a slide-in detail screen:
After:
For the detail slider, I also used a custom CSS from this thread:
Resharing the CSS for the side bar and the slide-in, for troubleshooting convenience. It would be highly appreciated if you could lend a sneak peek to let me know what I’m doing wrong:
/*Collapse Sidebar Permanently*/
.has-tab-bar > div:nth-child(2) > div:nth-child(2) {
width: 68px !important;
}
.has-tab-bar > div:nth-child(2) > div:nth-child(1) {
display: none;
}
/*Slide-in width*/
div[class*="slide-in-content___StyledMDiv3"] {
width: 75% !important;
}

