ng2-bootstrap-base-modified
Version:
Native Angular Bootstrap Components Typeahead modified
17 lines (15 loc) • 366 B
text/typescript
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 {
}