chore(setup): add missing styles.css + cosmetics (#3029)

This commit is contained in:
Ward Bell 2016-12-23 10:37:39 -08:00 committed by GitHub
parent 28d742ffce
commit 3c3750a4d4
3 changed files with 5 additions and 7 deletions

View File

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Hello Angular</title>
<title>Angular Quickstart</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>

View File

@ -2,13 +2,10 @@
<!-- #docregion -->
<html>
<head>
<title>Hello Angular</title>
<title>Angular Quickstart Seed</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<style>
body {color:#369;font-family: Arial,Helvetica,sans-serif;}
</style>
<!-- Polyfills for older browsers -->
<script src="node_modules/core-js/client/shim.min.js"></script>

View File

@ -4,8 +4,9 @@
"app/app.component.ts",
"app/app.module.ts",
"app/main.ts",
"index.html"
"index.html",
"styles.css"
],
"open": "app/app.component.ts",
"tags": ["quickstart setup"]
"tags": ["quickstart", "setup", "seed"]
}