I have created a new Angular 16 application with the Web SDK v.1019.2.9 using application
as my scaffold.
When I start my application on localhost, I noticed that the left <nav>
remains hidden to the side.
I got it to show on screen by tweaking the navigator
class in the style.less
file:
@import '~@c8y/style/main.less';
:root {
.navigator {
width: 1000px;
}
}
How do I get the side navigation panel to display and behave as it did in the old C8Y CLI, where you can choose to hide or display it with the navigator using the navigator toggler? Is that even possible as that element seems to have been removed in this version of the Web SDK?