aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/components/popover/popover.component.ts
blob: d6a4c3ae1ef76c759a248f9a6d52602131a518cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import {Component, Input} from "@angular/core";

@Component({
  selector: 'custom-popover',
  templateUrl: 'popover.component.html',
  styles: [`
        :host >>> .popover {
          font-size: 13px;
          text-align: left;
          z-index: 10000;
        }
    `]
})

export class PopoverComponent {
  @Input() value: String;
}