[ADF_NOISSUE] Header image fix (#3563)

* Header image fix

* fix css
This commit is contained in:
Popovics András
2018-07-05 23:23:46 +01:00
committed by Eugenio Romano
parent dc4d9e59e6
commit f298e78392
3 changed files with 6 additions and 11 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.6 KiB

View File

@@ -20,15 +20,12 @@ import { Component, Input, Output, EventEmitter, ViewEncapsulation } from '@angu
@Component({
selector: 'adf-layout-header',
templateUrl: './header.component.html',
styleUrls: ['./header.component.scss'],
encapsulation: ViewEncapsulation.None,
host: { 'class': 'adf-layout-header' }
host: { class: 'adf-layout-header' }
})
export class HeaderLayoutComponent {
@Input() title: string;
@Input() logo: string = './assets/logo.png';
@Input() logo: string = './assets/images/logo.png';
@Input() color: string;
@Input() showSidenavToggle: boolean = true;
@Output() clicked = new EventEmitter<any>();