I am currently utilizing the nebular theme and have set a fixed header. I am attempting to split columns with specified width and height, but for some reason, my width and height properties in the local component scss are not affecting the column layouts correctly.
<nb-layout>
<nb-layout-column>First</nb-layout-column>
<nb-layout-column>Second</nb-layout-column>
</nb-layout>
Due to the fixed header, the body container starts from the top:0
position, causing the body container to scroll. I am looking for a way to prevent my body container from scrolling without using overflow:hidden
.
You can access my stackblitz link here: https://stackblitz.com/edit/github-gv8sej
- I need assistance in setting the first column width to occupy 70% and the second one to be 30%, totaling 100% of the
<nb-layout>
container. - How can I prevent my home component from being scrollable while maintaining a fixed header?