.recent-blocks-move,
.recent-blocks-enter-active,
.recent-blocks-leave-active {
  transition: all 0.5s ease;
}
.recent-blocks-enter-from,
.recent-blocks-leave-to {
  opacity: 0;
  transform: translateX(30px);
}

/* ensure leaving items are taken out of layout flow so that moving
   animations can be calculated correctly. */
.recent-blocks-leave-active {
  position: absolute;
}.recent-transactions-move,
.recent-transactions-enter-active,
.recent-transactions-leave-active {
  transition: all 0.5s ease;
}
.recent-transactions-enter-from,
.recent-transactions-leave-to {
  opacity: 0;
  transform: translateX(30px);
}

/* ensure leaving items are taken out of layout flow so that moving
   animations can be calculated correctly. */
.recent-transactions-leave-active {
  position: absolute;
}