Skip to content

Commit

Permalink
Merge pull request #82 from mterm-io/feature/issue_7
Browse files Browse the repository at this point in the history
fix: .runner-history-running animation, resolves #7
  • Loading branch information
jon-v2 committed Apr 30, 2024
2 parents f8c805a + e2ca009 commit d55f310
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/renderer/src/assets/runner.css
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,19 @@ body {
}
.runner-history-running {
border-left: 5px solid #f1ce00;
animation: pulse .6s linear infinite;
}

@keyframes pulse {

0%,
100% {
border-color: #f1ce00;
}

50% {
border-color: transparent;
}
}
.runner-history-complete {
border-left: 5px solid #23682d;
Expand Down

0 comments on commit d55f310

Please sign in to comment.