diff options
Diffstat (limited to 'apps/settings/css')
-rw-r--r-- | apps/settings/css/settings.scss | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/settings/css/settings.scss b/apps/settings/css/settings.scss index 7b261d67181..d9073b9a138 100644 --- a/apps/settings/css/settings.scss +++ b/apps/settings/css/settings.scss @@ -1755,3 +1755,18 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { } } } + +.animated { + animation: blink-animation 1s steps(5, start) 4; +} + +@keyframes blink-animation { + to { + opacity: 0.6; + } +} +@-webkit-keyframes blink-animation { + to { + opacity: 1; + } +} |