/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { Component } from '@angular/core'; @Component({ selector: 'nb-layout-test', styles: [ ` :host /deep/ nb-layout-column { background-color: #fb75ff; } :host /deep/ nb-layout-column.right { background-color: #aeff34; } :host /deep/ nb-layout-column.left { background-color: #76ecff; } `, ], template: ` Akveo Left Center Right
super long
© Akveo 2017
Akveo Left Center Right
super long
© Akveo 2017
`, }) export class NbLayoutTestComponent { }