Formatting
This commit is contained in:
parent
72120570d3
commit
a969b9c2d4
12 changed files with 38 additions and 36 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
<mat-toolbar color="primary">
|
||||
<span>Dashboard</span>
|
||||
</mat-toolbar>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { TestBed, async } from '@angular/core/testing';
|
||||
import {async, TestBed} from '@angular/core/testing';
|
||||
import {RouterTestingModule} from '@angular/router/testing';
|
||||
import {AppComponent} from './app.component';
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import {BrowserModule} from '@angular/platform-browser';
|
||||
import {LOCALE_ID, NgModule} from '@angular/core';
|
||||
import {NgModule} from '@angular/core';
|
||||
import {AppComponent} from './app.component';
|
||||
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
|
||||
import {ClockComponent} from './clock/clock.component';
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import {Component} from '@angular/core';
|
||||
import { map } from 'rxjs/operators';
|
||||
import { Breakpoints, BreakpointObserver } from '@angular/cdk/layout';
|
||||
import {BreakpointObserver} from '@angular/cdk/layout';
|
||||
|
||||
@Component({
|
||||
selector: 'app-dashboard',
|
||||
|
@ -8,5 +7,6 @@ import { Breakpoints, BreakpointObserver } from '@angular/cdk/layout';
|
|||
styleUrls: ['./dashboard.component.css']
|
||||
})
|
||||
export class DashboardComponent {
|
||||
constructor(private breakpointObserver: BreakpointObserver) {}
|
||||
constructor(private breakpointObserver: BreakpointObserver) {
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
/* You can add global styles to this file, and also import other style files */
|
||||
|
||||
html, body { height: 100%; }
|
||||
body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; }
|
||||
html, body {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Roboto, "Helvetica Neue", sans-serif;
|
||||
}
|
||||
|
|
|
@ -2,10 +2,7 @@
|
|||
|
||||
import 'zone.js/dist/zone-testing';
|
||||
import {getTestBed} from '@angular/core/testing';
|
||||
import {
|
||||
BrowserDynamicTestingModule,
|
||||
platformBrowserDynamicTesting
|
||||
} from '@angular/platform-browser-dynamic/testing';
|
||||
import {BrowserDynamicTestingModule, platformBrowserDynamicTesting} from '@angular/platform-browser-dynamic/testing';
|
||||
|
||||
declare const require: {
|
||||
context(path: string, deep?: boolean, filter?: RegExp): {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue