I'm using Neular NbLayoutComponent with one column as a main container for an Angular Application as shown below.
<nb-layout windowMode>
<nb-layout-header fixed ></nb-layout-header>
<nb-sidebar tag="sidebar" responsive start></nb-sidebar>
<nb-layout-column>
Page content here
</nb-layout-column>
<nb-layout-footer fixed></nb-layout-footer>
</nb-layout>
The content of the tag <nb-layout-column> </nb-layout-column>
is not displayed across the entire page width. Even by assigning a width of 100% to the content placed in <nb-layout-column> </nb-layout-column>
nothing happens. There is a margin that remains on the right side.
How can I fix this problem?