Skip to content

Commit

Permalink
Styling the todo app
Browse files Browse the repository at this point in the history
  • Loading branch information
amejiarosario committed Oct 17, 2016
1 parent 2bdc618 commit 7e78e82
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
3 changes: 2 additions & 1 deletion angular-cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"prefix": "app",
"mobile": false,
"styles": [
"styles.scss"
"styles.scss",
"../node_modules/todomvc-app-css/index.css"
],
"scripts": [],
"environments": {
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"@angular/router": "~3.0.0",
"core-js": "^2.4.1",
"rxjs": "5.0.0-beta.12",
"todomvc-app-css": "2.0.6",
"ts-helpers": "^1.1.1",
"zone.js": "^0.6.23"
},
Expand Down
4 changes: 0 additions & 4 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
<h1>
{{title}}
</h1>

<app-todo></app-todo>
2 changes: 1 addition & 1 deletion src/app/todo/todo.component.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<section class="todoapp">

<header class="header">
<h1>Todos</h1>
<h1>Todo</h1>
<input class="new-todo" placeholder="What needs to be done?" autofocus>
</header>

Expand Down

0 comments on commit 7e78e82

Please sign in to comment.