From f00969c9625e47fced565d7ae2926ee2d5757185 Mon Sep 17 00:00:00 2001 From: Julien Lengrand-Lambert Date: Sun, 26 Sep 2021 10:44:55 +0200 Subject: [PATCH] Adding some minor CSS --- app/client.imba | 1 - app/todos.imba | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/client.imba b/app/client.imba index b24c448..4cc6974 100644 --- a/app/client.imba +++ b/app/client.imba @@ -22,7 +22,6 @@ tag app def fetch const dataFetch = await window.fetch("/todos") data = await dataFetch.json() - console.log(data) def mount fetch() diff --git a/app/todos.imba b/app/todos.imba index 2c31636..e89850a 100644 --- a/app/todos.imba +++ b/app/todos.imba @@ -4,11 +4,15 @@ tag todo-item

data export tag TodoApp + css margin-top: 20px mb: 20px prop todos for todo in todos export tag TodoForm + css button background:#b2f5ea + css button@hover background:#e76f51 + prop message