diff options
author | Gusted <williamzijl7@hotmail.com> | 2022-05-07 07:35:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-07 07:35:12 +0200 |
commit | 0eac09e0662ae70b8b6e3e5e8c33547c79ff7124 (patch) | |
tree | d5dc0a6ed8c4c1b92a273277380300289103d328 /web_src/less/animations.less | |
parent | [skip ci] Updated translations via Crowdin (diff) | |
download | forgejo-0eac09e0662ae70b8b6e3e5e8c33547c79ff7124.tar.xz forgejo-0eac09e0662ae70b8b6e3e5e8c33547c79ff7124.zip |
Improve reviewing PR UX (#19612)
Diffstat (limited to '')
-rw-r--r-- | web_src/less/animations.less | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/web_src/less/animations.less b/web_src/less/animations.less index 083e10089d..92a3052a1f 100644 --- a/web_src/less/animations.less +++ b/web_src/less/animations.less @@ -50,3 +50,19 @@ opacity: 0; } } + +@keyframes pulse { + 0% { + transform: scale(1); + } + 50% { + transform: scale(1.8); + } + 100% { + transform: scale(1); + } +} + +.pulse { + animation: pulse 2s linear; +} |