ng2-bootstrap-base-modified
Version:
Native Angular Bootstrap Components Typeahead modified
19 lines (17 loc) • 395 B
text/typescript
import { Component } from '@angular/core';
@Component({
selector: 'demo-popover-styling-local',
templateUrl: './styling-local.html',
/* tslint:disable no-unused-css*/
styles: [`
:host >>> .popover {
background-color: #009688;
color: #fff;
}
:host >>> .popover>.arrow:after {
border-top-color: #009688;
}
`]
})
export class DemoPopoverStylingLocalComponent {
}