Remove unused css from todomvc example

This commit is contained in:
Dan Holmsand 2015-02-01 20:16:23 +01:00
parent 2c7abcb710
commit 9d0d0680ec
2 changed files with 0 additions and 19 deletions

View File

@ -4,7 +4,6 @@
<meta charset="utf-8">
<title>todomvc with reagent</title>
<link rel="stylesheet" href="todos.css">
<link rel="stylesheet" href="todosanim.css">
</head>
<body>
<h1>This will become todomvc when the ClojureScript is compiled</h1>

View File

@ -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;
}