From 81c538bb77f2b2b0e5ad6f6529d77c1244525ae2 Mon Sep 17 00:00:00 2001 From: raandino Date: Tue, 2 Jun 2020 19:35:30 -0600 Subject: [PATCH 1/5] colorines --- css/index.css | 7 +++++++ js/app/pages/TodoPage.js | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/css/index.css b/css/index.css index 644cfa0..99c13e6 100644 --- a/css/index.css +++ b/css/index.css @@ -107,6 +107,13 @@ button{ flex-wrap: wrap; } +#addtodo{ + background-color: #17223b; + color: white; + height: 90px; + border-radius: 100%; + width: 90px; +} #sidebar-wrapper a{ color: white; diff --git a/js/app/pages/TodoPage.js b/js/app/pages/TodoPage.js index 5fae8fb..afee71e 100644 --- a/js/app/pages/TodoPage.js +++ b/js/app/pages/TodoPage.js @@ -73,7 +73,7 @@ const TodoPage = (props) => { return (

Things To Do

-
+
{ From 576f792429d8d4778c1843928338c8d73eae6c31 Mon Sep 17 00:00:00 2001 From: raandino Date: Tue, 2 Jun 2020 19:55:21 -0600 Subject: [PATCH 2/5] coloris --- css/index.css | 14 ++++++++++++++ js/app/components/TodoItem.js | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/css/index.css b/css/index.css index 99c13e6..473c6ac 100644 --- a/css/index.css +++ b/css/index.css @@ -113,8 +113,22 @@ button{ height: 90px; border-radius: 100%; width: 90px; + border: 1px solid white; } +#eliminar{ + background-color:rgb(180, 180, 180); + width: 100px; +} + +#editar{ + background-color: rgb(180, 180, 180); + width: 100px; +} + +#todo{ + background-color: #67a0d4; +} #sidebar-wrapper a{ color: white; } diff --git a/js/app/components/TodoItem.js b/js/app/components/TodoItem.js index 203d8c9..9f8958b 100644 --- a/js/app/components/TodoItem.js +++ b/js/app/components/TodoItem.js @@ -30,8 +30,8 @@ const TodoItem = ( {todo ,indice} ) => {
- - + + Date: Tue, 2 Jun 2020 19:59:03 -0600 Subject: [PATCH 3/5] --- css/index.css | 4 +++- js/app/components/TodoItem.js | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/css/index.css b/css/index.css index 473c6ac..983d5da 100644 --- a/css/index.css +++ b/css/index.css @@ -126,9 +126,11 @@ button{ width: 100px; } -#todo{ +#todo1{ background-color: #67a0d4; } + + #sidebar-wrapper a{ color: white; } diff --git a/js/app/components/TodoItem.js b/js/app/components/TodoItem.js index 9f8958b..7f1516e 100644 --- a/js/app/components/TodoItem.js +++ b/js/app/components/TodoItem.js @@ -16,7 +16,7 @@ const TodoItem = ( {todo ,indice} ) => { return (
-
+

{ `${todo.todo}` }

{`${todo.date?.format('DD-MM-YYYY')}`} From 8e6f39460a10aa5bd1e6a053401f8a316f4da1c1 Mon Sep 17 00:00:00 2001 From: raandino Date: Tue, 2 Jun 2020 20:07:52 -0600 Subject: [PATCH 4/5] --- js/app/pages/LoginPage.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/js/app/pages/LoginPage.js b/js/app/pages/LoginPage.js index f6135d8..75bf4d7 100644 --- a/js/app/pages/LoginPage.js +++ b/js/app/pages/LoginPage.js @@ -8,7 +8,7 @@ const RegisterForm = (props) => {