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

29 lines
578 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-09 17:24:42 +03:00
menuMode = 'static';
inputStyle = 'outlined';
ripple: boolean;
darkMode: boolean = false;
lightMode: boolean = true;
theme = 'light';
constructor(private primengConfig: PrimeNGConfig) {
}
ngOnInit() {
this.primengConfig.ripple = true;
this.ripple = true;
document.documentElement.style.fontSize = '14px';
}
2021-12-06 10:26:58 +03:00
}