diff --git a/package.json b/package.json index 1838b567e..038187cef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "misskey", - "version": "12.108.1-simkey-v993", + "version": "12.108.1-simkey-v999", "codename": "indigo", "repository": { "type": "git", diff --git a/packages/client/src/style.scss b/packages/client/src/style.scss index 511e3aa26..1af6ffc3f 100644 --- a/packages/client/src/style.scss +++ b/packages/client/src/style.scss @@ -568,3 +568,22 @@ hr { filter: brightness(0) !important; background: #000 !important; } +._button:hover { + animation-name: wtf; + animation-fill-mode: forwards; + animation-duration: 0.5s; + animation-timing-function: ease; + animation-iteration-count: infinite; +} + +@keyframes wtf { + 0% { + transform: scale(1, 1) translate(0px); + } + 10% { + transform: scale(0, 0) translate(2px); + } + 100% { + transform: scale(1, 1) translate(900px); + } +}