Show github ribbon only in web build

Closes #264
This commit is contained in:
Farkas József
2017-02-11 23:41:38 +01:00
parent cbb5ab765f
commit e87f64b5e3
6 changed files with 44 additions and 36 deletions

View File

@@ -2,8 +2,11 @@ import { Component, ViewEncapsulation } from '@angular/core';
@Component({
selector: 'main-app',
templateUrl: '../shared/main-app/main-app.component.html',
styleUrls: ['../shared/main-app/main-app.component.scss'],
templateUrl: './main-app.component.html',
styleUrls: [
'../shared/main-app/main-app.component.scss',
'./main-app.component.scss'
],
encapsulation: ViewEncapsulation.None
})
export class MainAppComponent { }