Fix main-app scrollbar

This commit is contained in:
Farkas József
2016-11-24 21:20:36 +01:00
committed by József Farkas
parent 970f9ddf1f
commit 8efc3d371a
9 changed files with 37 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
:host {
width: 100%;
height: 100%;
display: block;
}

View File

@@ -3,7 +3,10 @@ import { Component } from '@angular/core';
@Component({
selector: 'settings',
template: require('./settings.component.html'),
styles: [require('./settings.component.scss')]
styles: [require('./settings.component.scss')],
host: {
'class': 'container-fluid'
}
})
export class SettingsComponent {
constructor() { }