Styles paths fixed
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import {Component} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
templateUrl: './documentation.component.html'
|
||||
templateUrl: './documentation.component.html',
|
||||
styleUrls: ['../../../assets/demo/documentation.scss']
|
||||
})
|
||||
export class DocumentationComponent {}
|
||||
|
||||
@@ -3,7 +3,8 @@ import { IconService } from '../service/iconservice';
|
||||
|
||||
@Component({
|
||||
selector: 'app-iconsdemo',
|
||||
templateUrl: './iconsdemo.component.html'
|
||||
templateUrl: './iconsdemo.component.html',
|
||||
styleUrls: ['../../../assets/demo/documentation.scss']
|
||||
})
|
||||
export class IconsDemoComponent implements OnInit {
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@ import {ProductService} from '../service/productservice';
|
||||
|
||||
@Component({
|
||||
templateUrl: './listdemo.component.html',
|
||||
styleUrls: ['../../../assets/demo/badges.scss']
|
||||
})
|
||||
export class ListDemoComponent implements OnInit {
|
||||
|
||||
|
||||
@@ -10,6 +10,7 @@ import { MessageService, ConfirmationService } from 'primeng/api'
|
||||
@Component({
|
||||
templateUrl: './tabledemo.component.html',
|
||||
providers: [MessageService, ConfirmationService],
|
||||
styleUrls: ['../../../assets/demo/badges.scss'],
|
||||
styles: [`
|
||||
:host ::ng-deep .p-frozen-column {
|
||||
font-weight: bold;
|
||||
|
||||
@@ -5,7 +5,8 @@ import {ConfirmationService, MessageService} from 'primeng/api';
|
||||
|
||||
@Component({
|
||||
templateUrl: './app.crud.component.html',
|
||||
providers: [MessageService, ConfirmationService]
|
||||
providers: [MessageService, ConfirmationService],
|
||||
styleUrls: ['../../assets/demo/badges.scss']
|
||||
})
|
||||
export class AppCrudComponent implements OnInit {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user