diff --git a/db.json b/db.json index 825f3eb..4ff9d8c 100644 --- a/db.json +++ b/db.json @@ -1,13 +1,13 @@ { "tasks": [ { - "title": "Sleep", + "title": "Sleeping", "completed": false, "editing": false, "id": 1 }, { - "title": "Dance", + "title": "Dancing all day", "completed": false, "editing": false, "id": 2 diff --git a/src/app/Todo-List-App/containers/TodoList/todo-list.component.css b/src/app/Todo-List-App/containers/TodoList/todo-list.component.css index 3e31b9e..fd2a074 100644 --- a/src/app/Todo-List-App/containers/TodoList/todo-list.component.css +++ b/src/app/Todo-List-App/containers/TodoList/todo-list.component.css @@ -7,6 +7,10 @@ text-decoration-line: line-through; } +h1{ + font-family: 'Patrick Hand', cursive; +} + .addInput{ max-width: 500px; line-height: 2em; diff --git a/src/app/Todo-List-App/containers/TodoList/todo-list.component.html b/src/app/Todo-List-App/containers/TodoList/todo-list.component.html index 4370105..0a5f4cf 100644 --- a/src/app/Todo-List-App/containers/TodoList/todo-list.component.html +++ b/src/app/Todo-List-App/containers/TodoList/todo-list.component.html @@ -2,7 +2,7 @@