Changeset eb21f00 for src/Clients/Angular/finki-chattery
- Timestamp:
- 10/21/21 21:10:01 (3 years ago)
- Branches:
- dev
- Children:
- 68a1d2f
- Parents:
- 6a65994
- Location:
- src/Clients/Angular/finki-chattery/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Clients/Angular/finki-chattery/src/app/app-routing.module.ts
r6a65994 reb21f00 1 1 import { NgModule } from '@angular/core'; 2 import { CommonModule } from '@angular/common';3 2 import { Routes, RouterModule } from '@angular/router'; 4 3 import { AuthorizedGuard } from './core/guards/authorized.guard'; … … 17 16 18 17 @NgModule({ 19 imports: [ 20 CommonModule, 21 RouterModule.forRoot(routes) 22 ], 18 imports: [RouterModule.forRoot(routes)], 23 19 exports: [RouterModule] 24 20 }) -
src/Clients/Angular/finki-chattery/src/app/app.component.html
r6a65994 reb21f00 1 2 <mat-sidenav-container> 3 <mat-sidenav #sidenav role="navigation"> 4 <!--this is a place for us to add side-nav code--> 5 </mat-sidenav> 6 <mat-sidenav-content> 7 <!--in here all the content must reside. We will add a navigation header as well--> 8 <app-header></app-header> 9 <main> 10 <router-outlet></router-outlet> 11 </main> 12 </mat-sidenav-content> 13 </mat-sidenav-container> 14 15 1 <main> 16 2 <mat-progress-bar class="global-loader" [class.hidden]="!(loader.isLoading | async)" mode="indeterminate"></mat-progress-bar> 17 3 <router-outlet></router-outlet> -
src/Clients/Angular/finki-chattery/src/app/app.module.ts
r6a65994 reb21f00 11 11 import { translateConfiguration, TranslateFromJsonService } from './shared-app/services'; 12 12 import { SharedMaterialModule } from './shared-material/shared-material.module'; 13 import { HeaderComponent } from './navigation/header/header.component';14 13 15 14 @NgModule({ 16 declarations: [AppComponent , HeaderComponent],15 declarations: [AppComponent], 17 16 imports: [ 18 17 BrowserModule, -
src/Clients/Angular/finki-chattery/src/styles.scss
r6a65994 reb21f00 1 1 html, 2 2 body { 3 height: 100%; 4 } 5 body { 3 6 margin: 0; 4 height: 100%;5 }6 /*7 body {8 7 font-family: Roboto, sans-serif; 9 8 } … … 286 285 z-index: 1100 !important; 287 286 } 288 */
Note:
See TracChangeset
for help on using the changeset viewer.