Files
psp_panel/src/app/app.component.ts
T

18 lines
409 B
TypeScript
Raw Normal View History

2021-12-06 10:26:58 +03:00
import { Component } from '@angular/core';
2021-12-09 17:24:42 +03:00
import { PrimeNGConfig } from 'primeng/api';
2021-12-06 10:26:58 +03:00
@Component({
2021-12-09 17:24:42 +03:00
selector: 'app-root',
templateUrl: './app.component.html'
2021-12-06 10:26:58 +03:00
})
export class AppComponent {
2021-12-22 16:41:48 +03:00
2021-12-09 17:24:42 +03:00
menuMode = 'static';
2022-01-07 15:40:43 +03:00
constructor(private primengConfig: PrimeNGConfig) { }
2021-12-09 17:24:42 +03:00
ngOnInit() {
this.primengConfig.ripple = true;
document.documentElement.style.fontSize = '14px';
}
2021-12-06 10:26:58 +03:00
}