Fix: Refactored the css code of keyframes blink

This commit is contained in:
roottool
2019-05-04 02:54:38 +09:00
parent ebc0083531
commit 4269777f1c
+2 -2
View File
@@ -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 +=