valor-software/angular2-bootstrap

View on GitHub
demo/src/app/components/+alerts/demos/styling-local/styling-local.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Component } from '@angular/core';

@Component({
  selector: 'demo-alert-styling-local',
  templateUrl: './styling-local.html',
  /* tslint:disable no-unused-css*/
  styles: [
    `
  :host >>> .alert-md-local {
    background-color: #009688;
    border-color: #00695C;
    color: #fff;
  }
  `
  ]
})
export class DemoAlertStylingLocalComponent {}