- Timestamp:
- 07/24/20 03:17:26 (4 years ago)
- Branches:
- master
- Children:
- de2baac
- Parents:
- 37c8d1d
- Location:
- Farmatiko/ClientApp/src
- Files:
-
- 12 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/ClientApp/src/app/app.component.html
r37c8d1d r785b8bd 1 1 <body> 2 <app-nav-menu></app-nav-menu>3 2 <div class="container"> 4 3 <router-outlet></router-outlet> -
Farmatiko/ClientApp/src/app/app.module.ts
r37c8d1d r785b8bd 4 4 import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http'; 5 5 import { RouterModule } from '@angular/router'; 6 import { MaterialModule } from './shared/material.module'; 7 import { ReactiveFormsModule } from '@angular/forms'; 6 8 7 9 import { AppComponent } from './app.component'; … … 12 14 import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; 13 15 import { KoronaComponent } from './korona/korona.component'; 16 import { AdminComponent } from './admin/admin.component'; 17 import { DashboardComponent } from './dashboard/dashboard.component'; 18 import { LoginComponent } from './login/login.component'; 14 19 15 20 @NgModule({ … … 20 25 CounterComponent, 21 26 FetchDataComponent, 22 KoronaComponent 27 KoronaComponent, 28 AdminComponent, 29 DashboardComponent, 30 LoginComponent 23 31 ], 24 32 imports: [ … … 30 38 { path: 'mapa', component: CounterComponent }, 31 39 { path: 'fetch-data', component: FetchDataComponent }, 32 { path: 'koronavirus', component: KoronaComponent } 40 { path: 'koronavirus', component: KoronaComponent }, 41 { path: 'admin', component: AdminComponent }, 42 { path: 'dashboard', component: DashboardComponent }, 43 { path: 'login', component: LoginComponent } 33 44 ]), 34 BrowserAnimationsModule 45 BrowserAnimationsModule, 46 MaterialModule, 47 ReactiveFormsModule 35 48 ], 36 49 providers: [], -
Farmatiko/ClientApp/src/app/counter/counter.component.html
r37c8d1d r785b8bd 7 7 <button class="btn btn-primary" (click)="incrementCounter()">Increment</button> --> 8 8 9 <app-nav-menu></app-nav-menu> 9 10 10 11 <div class="wrapper"> -
Farmatiko/ClientApp/src/app/home/home.component.html
r37c8d1d r785b8bd 1 <app-nav-menu></app-nav-menu> 2 1 3 <div class="wrapper"> 2 4 <div> -
Farmatiko/ClientApp/src/app/home/home.component.ts
r37c8d1d r785b8bd 1 1 import { Component, OnInit, Input, ViewChild } from '@angular/core'; 2 import { MaterialModule } from '../shared/material.module';3 2 4 3 @Component({ -
Farmatiko/ClientApp/src/app/korona/korona.component.html
r37c8d1d r785b8bd 1 <app-nav-menu></app-nav-menu> 2 1 3 <div class="container"> 2 4 <div class="row"> -
Farmatiko/ClientApp/src/app/nav-menu/nav-menu.component.css
r37c8d1d r785b8bd 5 5 } 6 6 7 8 9 7 a.navbar-brand img { 8 width: 200px; 9 } 10 10 11 11 html { -
Farmatiko/ClientApp/src/app/nav-menu/nav-menu.component.html
r37c8d1d r785b8bd 21 21 </li> 22 22 <li class="nav-item" [routerLinkActive]="['link-active']"> 23 <a class="nav-link text-dark" [routerLink]="['/mapa']">Мапа на здравствени работници и здравствени установи</a>23 <a class="nav-link text-dark" [routerLink]="['/mapa']">Мапа</a> 24 24 </li> 25 25 <li class="nav-item" [routerLinkActive]="['link-active']"> -
Farmatiko/ClientApp/src/custom-theme.scss
r37c8d1d r785b8bd 13 13 // (imported above). For each palette, you can optionally specify a default, lighter, and darker 14 14 // hue. Available color palettes: https://material.io/design/color/ 15 $Farmatiko-primary: mat-palette($mat- indigo);15 $Farmatiko-primary: mat-palette($mat-green); 16 16 $Farmatiko-accent: mat-palette($mat-pink, A200, A100, A400); 17 17 -
Farmatiko/ClientApp/src/styles.css
r37c8d1d r785b8bd 2 2 3 3 /* Provide sufficient contrast against white background */ 4 * { 5 box-sizing: border-box; 6 } 7 4 8 a { 5 9 color: #0366d6;
Note:
See TracChangeset
for help on using the changeset viewer.