[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

View File

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

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>();

View File

@@ -23,13 +23,13 @@
@import '../viewer/components/imgViewer.component';
@import '../form/components/form.component';
@import '../layout/components/sidebar-action/sidebar-action-menu.component';
@import '../layout/components/header/header.component';
@import '../comments/comment-list.component';
@import '../comments/comments.component';
@import '../layout/components/layout-container/layout-container.component';
@import "../templates/empty-content/empty-content.component";
@import "../templates/error-content/error-content.component";
@import "../buttons-menu/buttons-menu.component";
@import '../layout/components/header/header.component';
@import '../templates/empty-content/empty-content.component';
@import '../templates/error-content/error-content.component';
@import '../buttons-menu/buttons-menu.component';
@mixin adf-core-theme($theme) {
@include adf-colors-theme($theme);
@@ -63,5 +63,3 @@
@include adf-buttons-menu-theme($theme);
@include adf-header-layout-theme($theme);
}