Skip to content

Commit 59b4dc4

Browse files
author
Alian Rignack Quevedo
committed
Initial commit
1 parent fdc9ebf commit 59b4dc4

File tree

6 files changed

+39
-4
lines changed

6 files changed

+39
-4
lines changed

angular.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"src/assets"
2525
],
2626
"styles": [
27+
"./node_modules/@angular/material/prebuilt-themes/deeppurple-amber.css",
2728
"src/styles.css"
2829
],
2930
"scripts": []
@@ -88,6 +89,7 @@
8889
"src/assets"
8990
],
9091
"styles": [
92+
"./node_modules/@angular/material/prebuilt-themes/deeppurple-amber.css",
9193
"src/styles.css"
9294
],
9395
"scripts": []
@@ -119,6 +121,7 @@
119121
}
120122
}
121123
}
122-
}},
124+
}
125+
},
123126
"defaultProject": "pwatest"
124-
}
127+
}

package-lock.json

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@
1212
"private": true,
1313
"dependencies": {
1414
"@angular/animations": "~9.1.6",
15+
"@angular/cdk": "^9.2.3",
1516
"@angular/common": "~9.1.6",
1617
"@angular/compiler": "~9.1.6",
1718
"@angular/core": "~9.1.6",
1819
"@angular/forms": "~9.1.6",
20+
"@angular/material": "^9.2.3",
1921
"@angular/platform-browser": "~9.1.6",
2022
"@angular/platform-browser-dynamic": "~9.1.6",
2123
"@angular/router": "~9.1.6",

src/app/app.module.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@ import { NgModule } from '@angular/core';
33

44
import { AppRoutingModule } from './app-routing.module';
55
import { AppComponent } from './app.component';
6+
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
7+
import { HttpClientModule } from '@angular/common/http';
68

79
@NgModule({
810
declarations: [
911
AppComponent
1012
],
1113
imports: [
1214
BrowserModule,
13-
AppRoutingModule
15+
AppRoutingModule,
16+
BrowserAnimationsModule,
17+
HttpClientModule
1418
],
1519
providers: [],
1620
bootstrap: [AppComponent]

src/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
<base href="/">
77
<meta name="viewport" content="width=device-width, initial-scale=1">
88
<link rel="icon" type="image/x-icon" href="favicon.ico">
9+
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap" rel="stylesheet">
10+
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
911
</head>
10-
<body>
12+
<body class="mat-typography">
1113
<app-root></app-root>
1214
</body>
1315
</html>

src/styles.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
/* You can add global styles to this file, and also import other style files */
2+
3+
html, body { height: 100%; }
4+
body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; }

0 commit comments

Comments
 (0)