mirror of https://github.com/status-im/reagent.git
Remove unused css from todomvc example
This commit is contained in:
parent
2c7abcb710
commit
9d0d0680ec
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
}
|
Loading…
Reference in New Issue