bahmutov / real-time-coverage

Real time code coverage information for JavaScript
2 stars 0 forks source link

How to display additions? #2

Open bahmutov opened 8 years ago

bahmutov commented 8 years ago

If number of covered statements increases, need to display +1, +20, ... Similar to 2048 score additions https://glebbahmutov.com/2048/ See code in 2048/style/main.scss

.score-addition {
    position: absolute;
    right: 30px;
    color: red;
    font-size: $height;
    line-height: $height;
    font-weight: bold;
    color: rgba($text-color, .9);
    z-index: 100;
    @include animation(move-up 600ms ease-in);
    @include animation-fill-mode(both);
  }