Sonsino, Ofir (os0695) | ff76b5e | 2018-07-10 15:57:37 +0300 | [diff] [blame] | 1 | import {Component, Input} from "@angular/core"; |
2 | |||||
3 | @Component({ | ||||
4 | selector: 'custom-popover', | ||||
5 | templateUrl: 'popover.component.html', | ||||
6 | styles: [` | ||||
7 | :host >>> .popover { | ||||
8 | font-size: 13px; | ||||
9 | text-align: left; | ||||
10 | z-index: 10000; | ||||
11 | } | ||||
12 | `] | ||||
13 | }) | ||||
14 | |||||
15 | export class PopoverComponent { | ||||
16 | @Input() value: String; | ||||
17 | } |