added time
This commit is contained in:
@ -20,8 +20,7 @@
|
||||
"prefix": "icod",
|
||||
"styles": [
|
||||
"styles.scss",
|
||||
"../node_modules/font-awesome/css/font-awesome.min.css",
|
||||
"../node_modules/primeng/resources/themes/omega/theme.css",
|
||||
"../node_modules/primeng/resources/themes/darkness/theme.css",
|
||||
"../node_modules/primeng/resources/primeng.min.css"
|
||||
],
|
||||
"scripts": [],
|
||||
|
1
angular/src/_variables.scss
Normal file
1
angular/src/_variables.scss
Normal file
@ -0,0 +1 @@
|
||||
$fa-font-path : '../node_modules/font-awesome/fonts';
|
@ -6,5 +6,5 @@ import { Component } from '@angular/core';
|
||||
styleUrls: ['./app.component.scss']
|
||||
})
|
||||
export class AppComponent {
|
||||
title = 'icod';
|
||||
|
||||
}
|
||||
|
@ -1,23 +1,37 @@
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { NgModule } from '@angular/core';
|
||||
import {BrowserModule} from '@angular/platform-browser';
|
||||
import {NgModule} from '@angular/core';
|
||||
|
||||
import { AppRoutingModule } from './app-routing.module';
|
||||
import {AppRoutingModule} from './app-routing.module';
|
||||
|
||||
import { ServiceWorkerModule } from '@angular/service-worker';
|
||||
import { AppComponent } from './app.component';
|
||||
import {ServiceWorkerModule} from '@angular/service-worker';
|
||||
import {AppComponent} from './app.component';
|
||||
|
||||
import { environment } from '../environments/environment';
|
||||
import {environment} from '../environments/environment';
|
||||
import {FormsModule} from '@angular/forms';
|
||||
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
|
||||
import {HttpClientModule} from '@angular/common/http';
|
||||
import {SplitButtonModule, ToolbarModule} from 'primeng/primeng';
|
||||
import {MenuModule} from 'primeng/menu';
|
||||
import { DataComponent } from './components/data/data.component';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AppComponent
|
||||
AppComponent,
|
||||
DataComponent
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
AppRoutingModule,
|
||||
ServiceWorkerModule.register('/ngsw-worker.js', { enabled: environment.production })
|
||||
ServiceWorkerModule.register('/ngsw-worker.js', {enabled: environment.production}),
|
||||
FormsModule,
|
||||
BrowserAnimationsModule,
|
||||
HttpClientModule,
|
||||
ToolbarModule,
|
||||
SplitButtonModule,
|
||||
MenuModule,
|
||||
],
|
||||
providers: [],
|
||||
bootstrap: [AppComponent]
|
||||
})
|
||||
export class AppModule { }
|
||||
export class AppModule {
|
||||
}
|
||||
|
@ -1 +1,3 @@
|
||||
@import "~bootstrap/scss/bootstrap";
|
||||
/*@import "~bootstrap/scss/bootstrap";*/
|
||||
@import "variables";
|
||||
@import "~font-awesome/scss/font-awesome";
|
||||
|
Reference in New Issue
Block a user