Skip to content

Commit 72eed01

Browse files
authored
Merge branch 'dev' into eslint
2 parents a9f6bde + 08b608f commit 72eed01

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

package-lock.json

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sass/popup.scss

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,17 @@ svg {
769769
}
770770
}
771771

772+
@keyframes flash {
773+
0%,
774+
33% {
775+
opacity: 0;
776+
}
777+
33.1%,
778+
100% {
779+
opacity: 1;
780+
}
781+
}
782+
772783
@keyframes fadeshow {
773784
0% {
774785
opacity: 0;
@@ -926,4 +937,12 @@ svg {
926937
}
927938
}
928939
}
940+
941+
#codes {
942+
&:not(.edit) {
943+
.code.timeout:not(.hotp) {
944+
animation: flash 1s infinite;
945+
}
946+
}
947+
}
929948
}

0 commit comments

Comments
 (0)