diff --git a/projects/common/src/fm/components/side-panel/side-panel.component.ts b/projects/common/src/fm/components/side-panel/side-panel.component.ts index bb87a18..8e26fe8 100644 --- a/projects/common/src/fm/components/side-panel/side-panel.component.ts +++ b/projects/common/src/fm/components/side-panel/side-panel.component.ts @@ -1,9 +1,10 @@ -import { Component, Input,Output,ViewChild,EventEmitter, ElementRef,OnChanges,SimpleChanges,HostListener,ChangeDetectorRef } from '@angular/core'; +import { Component, Input,Output,ViewChild,EventEmitter, ElementRef,OnChanges,SimpleChanges,HostListener,ChangeDetectorRef, ViewEncapsulation } from '@angular/core'; @Component({ selector: 'fm-side-panel', templateUrl: 'side-panel.component.html', - styleUrls: ['side-panel.component.scss'] + styleUrls: ['side-panel.component.scss'], + encapsulation: ViewEncapsulation.None })