diff --git a/src/@fuse/components/sidebar/sidebar.component.ts b/src/@fuse/components/sidebar/sidebar.component.ts index dccd90e1..c50ad2fb 100644 --- a/src/@fuse/components/sidebar/sidebar.component.ts +++ b/src/@fuse/components/sidebar/sidebar.component.ts @@ -174,7 +174,7 @@ export class FuseSidebarComponent implements OnInit, OnDestroy this._renderer.setStyle(this._elementRef.nativeElement, 'max-width', styleValue); // Set the style and class - this._renderer.setStyle(sibling, styleRule, styleValue, RendererStyleFlags2.Important + RendererStyleFlags2.DashCase); + this._renderer.setStyle(sibling, styleRule, styleValue); this._renderer.addClass(this._elementRef.nativeElement, 'folded'); } // If unfolded... @@ -434,7 +434,7 @@ export class FuseSidebarComponent implements OnInit, OnDestroy this._renderer.setStyle(this._elementRef.nativeElement, 'max-width', styleValue); // Set the style and class - this._renderer.setStyle(sibling, styleRule, styleValue, RendererStyleFlags2.Important + RendererStyleFlags2.DashCase); + this._renderer.setStyle(sibling, styleRule, styleValue); this._renderer.addClass(this._elementRef.nativeElement, 'folded'); } diff --git a/src/@fuse/scss/partials/_print.scss b/src/@fuse/scss/partials/_print.scss index 6a593c69..3ea2b452 100644 --- a/src/@fuse/scss/partials/_print.scss +++ b/src/@fuse/scss/partials/_print.scss @@ -9,7 +9,6 @@ .page-break-before { display: none; } - } @media print { @@ -47,6 +46,13 @@ display: none !important; } + #main, + #container-1, + #container-2, + #container-3 { + padding: 0 !important; + } + .ps { overflow: visible !important; }