Skip to content

Commit

Permalink
Merge 4269777 into ebc0083
Browse files Browse the repository at this point in the history
  • Loading branch information
roottool committed May 3, 2019
2 parents ebc0083 + 4269777 commit fbbbc9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/dom/DomRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,9 @@ export class DomRenderer extends Disposable implements IRenderer {
// Blink animation
styles +=
`@keyframes blink {` +
` 0 % { opacity: 1.0; }` +
` 0% { opacity: 1.0; }` +
` 50% { opacity: 0.0; }` +
` 100 % { opacity: 1.0; }` +
` 100% { opacity: 1.0; }` +
`}`;
// Cursor
styles +=
Expand Down

0 comments on commit fbbbc9e

Please sign in to comment.