jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
25 lines (21 loc) • 520 B
text/typescript
import { Component, ViewEncapsulation } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styles: [`
#container{
width: 400px;
}
jqxTooltip {
margin: 8px 8px 0 8px;
float: left;
}
jqxTooltip div {
height: 162px;
}
`],
encapsulation: ViewEncapsulation.None
})
export class AppComponent {
position: string = 'bottom';
}