From 9d0d0680ec484e03bd63f3da287dadec34b8d85e Mon Sep 17 00:00:00 2001 From: Dan Holmsand Date: Sun, 1 Feb 2015 20:16:23 +0100 Subject: [PATCH] Remove unused css from todomvc example --- examples/todomvc/todomvc.html | 1 - examples/todomvc/todosanim.css | 18 ------------------ 2 files changed, 19 deletions(-) delete mode 100644 examples/todomvc/todosanim.css diff --git a/examples/todomvc/todomvc.html b/examples/todomvc/todomvc.html index 51503c8..6f09b0a 100644 --- a/examples/todomvc/todomvc.html +++ b/examples/todomvc/todomvc.html @@ -4,7 +4,6 @@ todomvc with reagent -

This will become todomvc when the ClojureScript is compiled

diff --git a/examples/todomvc/todosanim.css b/examples/todomvc/todosanim.css deleted file mode 100644 index 8a39d57..0000000 --- a/examples/todomvc/todosanim.css +++ /dev/null @@ -1,18 +0,0 @@ - -.todoitem-enter { - opacity: 0.1; - transition: opacity .2s ease-in; -} - -.todoitem-enter.todoitem-enter-active { - opacity: 1; -} - -.todoitem-leave { - opacity: 0.8; - transition: opacity 0.2s ease-out; -} - -.todoitem-leave.todoitem-leave-active { - opacity: 0.1; -}