Changeset eb21f00 for src/Clients


Ignore:
Timestamp:
10/21/21 21:10:01 (3 years ago)
Author:
Стојков Марко <mst@…>
Branches:
dev
Children:
68a1d2f
Parents:
6a65994
Message:

Fix

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  
    11import { NgModule } from '@angular/core';
    2 import { CommonModule } from '@angular/common';
    32import { Routes, RouterModule } from '@angular/router';
    43import { AuthorizedGuard } from './core/guards/authorized.guard';
     
    1716
    1817@NgModule({
    19   imports: [
    20     CommonModule,
    21     RouterModule.forRoot(routes)
    22   ],
     18  imports: [RouterModule.forRoot(routes)],
    2319  exports: [RouterModule]
    2420})
  • 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>
    162  <mat-progress-bar class="global-loader" [class.hidden]="!(loader.isLoading | async)" mode="indeterminate"></mat-progress-bar>
    173  <router-outlet></router-outlet>
  • src/Clients/Angular/finki-chattery/src/app/app.module.ts

    r6a65994 reb21f00  
    1111import { translateConfiguration, TranslateFromJsonService } from './shared-app/services';
    1212import { SharedMaterialModule } from './shared-material/shared-material.module';
    13 import { HeaderComponent } from './navigation/header/header.component';
    1413
    1514@NgModule({
    16   declarations: [AppComponent, HeaderComponent],
     15  declarations: [AppComponent],
    1716  imports: [
    1817    BrowserModule,
  • src/Clients/Angular/finki-chattery/src/styles.scss

    r6a65994 reb21f00  
    11html,
    22body {
     3  height: 100%;
     4}
     5body {
    36  margin: 0;
    4   height: 100%;
    5 }
    6 /*
    7 body {
    87  font-family: Roboto, sans-serif;
    98}
     
    286285  z-index: 1100 !important;
    287286}
    288 */
Note: See TracChangeset for help on using the changeset viewer.